diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-11-03 12:38:42 +0100 |
---|---|---|
committer | Maros Marsalek <mmarsale@cisco.com> | 2016-11-03 12:38:42 +0100 |
commit | 4540c478f501f2a994100ca90fc7a667c3ae8e79 (patch) | |
tree | fc06be409560d74234cb80d677ef4c7b45fd9ba9 /nat/nat2vpp | |
parent | 76a0b6df0c27eade87f9c04346ef2b5aee5eedff (diff) |
HONEYCOMB-259 Fix compilation issue in nat
Change-Id: I22cb84d19cdf456f80359ef43988b2686f981d0b
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'nat/nat2vpp')
-rw-r--r-- | nat/nat2vpp/src/main/java/io/fd/honeycomb/nat/read/ifc/AbstractInterfaceNatCustomizer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nat/nat2vpp/src/main/java/io/fd/honeycomb/nat/read/ifc/AbstractInterfaceNatCustomizer.java b/nat/nat2vpp/src/main/java/io/fd/honeycomb/nat/read/ifc/AbstractInterfaceNatCustomizer.java index 441218a3f..e48e7eb3d 100644 --- a/nat/nat2vpp/src/main/java/io/fd/honeycomb/nat/read/ifc/AbstractInterfaceNatCustomizer.java +++ b/nat/nat2vpp/src/main/java/io/fd/honeycomb/nat/read/ifc/AbstractInterfaceNatCustomizer.java @@ -53,7 +53,7 @@ abstract class AbstractInterfaceNatCustomizer<C extends DataObject, B extends Bu // Cache dump for each interface under the same key since this is all ifc dump final Optional<SnatInterfaceDetailsReplyDump> dump = - dumpMgr.getDump(id, getClass().getName(), ctx.getModificationCache(), null); + dumpMgr.getDump(id, ctx.getModificationCache(), null); // Find entries for current ifc and if is marked as inside set the builder to return presence container dump.or(new SnatInterfaceDetailsReplyDump()).snatInterfaceDetails.stream() |