mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 05:41:23 +00:00
"static final" does not do anything
This commit is contained in:
parent
56db1867ef
commit
a3a8ba40e7
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ public enum Status
|
||||||
this.intValue = v;
|
this.intValue = v;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final Status fromInt(int v)
|
public static Status fromInt(int v)
|
||||||
{
|
{
|
||||||
for (Status k : values())
|
for (Status k : values())
|
||||||
if (k.intValue == v)
|
if (k.intValue == v)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue