Committed by
Gerrit Code Review
Fixed order of static elaboration in FullVlanAvailable implementation.
Change-Id: I88a7c3ffb9f4017d99465146fae4ce1288de66d0
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -36,10 +36,10 @@ public class FullVlanAvailable | ... | @@ -36,10 +36,10 @@ public class FullVlanAvailable |
36 | implements VlanQuery { | 36 | implements VlanQuery { |
37 | 37 | ||
38 | private static final int MAX_VLAN_ID = VlanId.MAX_VLAN; | 38 | private static final int MAX_VLAN_ID = VlanId.MAX_VLAN; |
39 | - private static final Set<VlanId> ENTIRE_VLAN = getEntireVlans(); | ||
40 | private static final Set<Integer> EXCLUDED = ImmutableSet.of( | 39 | private static final Set<Integer> EXCLUDED = ImmutableSet.of( |
41 | (int) VlanId.NO_VID, | 40 | (int) VlanId.NO_VID, |
42 | (int) VlanId.RESERVED); | 41 | (int) VlanId.RESERVED); |
42 | + private static final Set<VlanId> ENTIRE_VLAN = getEntireVlans(); | ||
43 | 43 | ||
44 | @Override | 44 | @Override |
45 | public Set<VlanId> queryVlanIds(PortNumber port) { | 45 | public Set<VlanId> queryVlanIds(PortNumber port) { | ... | ... |
-
Please register or login to post a comment