3
0
Fork 0
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:
George Karpenkov 2016-01-06 10:25:52 +01:00
parent 56db1867ef
commit a3a8ba40e7

View file

@ -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)