FlowId's valueOf should be static.
Change-Id: I585c1e2ea2eba48b9fac92117354495f0d7b2e8a
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -11,7 +11,7 @@ public final class FlowId { | ... | @@ -11,7 +11,7 @@ public final class FlowId { |
11 | this.flowid = id; | 11 | this.flowid = id; |
12 | } | 12 | } |
13 | 13 | ||
14 | - public FlowId valueOf(int id) { | 14 | + public static FlowId valueOf(int id) { |
15 | return new FlowId(id); | 15 | return new FlowId(id); |
16 | } | 16 | } |
17 | 17 | ... | ... |
-
Please register or login to post a comment