mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
"static final" does not do anything
This commit is contained in:
parent
56db1867ef
commit
a3a8ba40e7
|
@ -38,7 +38,7 @@ public enum Status
|
|||
this.intValue = v;
|
||||
}
|
||||
|
||||
public static final Status fromInt(int v)
|
||||
public static Status fromInt(int v)
|
||||
{
|
||||
for (Status k : values())
|
||||
if (k.intValue == v)
|
||||
|
|
Loading…
Reference in a new issue