File tree Expand file tree Collapse file tree
src/main/java/de/learnlib/ralib/data Expand file tree Collapse file tree Original file line number Diff line number Diff line change 255255 <arg >-XDcompilePolicy=simple</arg >
256256 <arg >--should-stop=ifError=FLOW</arg >
257257 <arg >-XDaddTypeAnnotationsToSymbol=true</arg >
258- <arg >-Xplugin:ErrorProne -Xep:ObjectToString:OFF -Xep:BadInstanceof:OFF -Xep:EqualsGetClass:OFF -Xep:BigDecimalEquals:OFF -Xep:ReferenceEquality:OFF -Xep:ArrayAsKeyOfSetOrMap:OFF -Xep:IterableAndIterator:OFF -Xep:ObjectsHashCodePrimitive :OFF -Xep:StatementSwitchToExpressionSwitch:OFF -Xep:JdkObsolete:OFF -Xep:AddressSelection:OFF -Xep:EmptyBlockTag:OFF -Xep:MissingSummary:OFF -Xep:NonApiType:OFF -Xep:StringSplitter:OFF -Xep:WaitNotInLoop:OFF -Xep:StringConcatToTextBlock:OFF</arg >
258+ <arg >-Xplugin:ErrorProne -Xep:ObjectToString:OFF -Xep:BadInstanceof:OFF -Xep:EqualsGetClass:OFF -Xep:BigDecimalEquals:OFF -Xep:ReferenceEquality:OFF -Xep:ArrayAsKeyOfSetOrMap:OFF -Xep:IterableAndIterator:OFF -Xep:StatementSwitchToExpressionSwitch:OFF -Xep:JdkObsolete:OFF -Xep:AddressSelection:OFF -Xep:EmptyBlockTag:OFF -Xep:MissingSummary:OFF -Xep:NonApiType:OFF -Xep:StringSplitter:OFF -Xep:WaitNotInLoop:OFF -Xep:StringConcatToTextBlock:OFF</arg >
259259 </compilerArgs >
260260 <annotationProcessorPaths >
261261 <path >
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ public Register(DataType dataType, int id) {
5050 super (dataType , id , "r" + id );
5151 }
5252
53- @ Override
54- public Expression <BigDecimal > asExpression () {
55- return this ;
56- }
53+ @ Override
54+ public Expression <BigDecimal > asExpression () {
55+ return this ;
56+ }
5757 }
5858
5959 /**
@@ -130,7 +130,7 @@ public boolean equals(Object obj) {
130130 public int hashCode () {
131131 int hash = 7 ;
132132 hash = 97 * hash + Objects .hashCode (this .type );
133- hash = 97 * hash + Objects .hashCode (this .id );
133+ hash = 97 * hash + Integer .hashCode (this .id );
134134 hash = 97 * hash + Objects .hashCode (this .getClass ());
135135 return hash ;
136136 }
You can’t perform that action at this time.
0 commit comments