Committed by
Gerrit Code Review
NiciraExtnReviewFix
Change-Id: I1f2ed0a0289c6568057530c7178aa46e588fb11f
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -38,10 +38,10 @@ public class NiciraExtensionInterpreter extends AbstractHandlerBehaviour | ... | @@ -38,10 +38,10 @@ public class NiciraExtensionInterpreter extends AbstractHandlerBehaviour |
38 | 38 | ||
39 | @Override | 39 | @Override |
40 | public boolean supported(ExtensionType extensionType) { | 40 | public boolean supported(ExtensionType extensionType) { |
41 | - if (extensionType.equals(ExtensionType.ExtensionTypes.NICIRA_SET_TUNNEL_DST)) { | 41 | + if (extensionType.equals(ExtensionType.ExtensionTypes.NICIRA_SET_TUNNEL_DST.type())) { |
42 | return true; | 42 | return true; |
43 | } | 43 | } |
44 | - if (extensionType.equals(ExtensionType.ExtensionTypes.NICIRA_RESUBMIT)) { | 44 | + if (extensionType.equals(ExtensionType.ExtensionTypes.NICIRA_RESUBMIT.type())) { |
45 | return true; | 45 | return true; |
46 | } | 46 | } |
47 | return false; | 47 | return false; | ... | ... |
-
Please register or login to post a comment