Skip to content
Snippets Groups Projects
Commit 0da7f6a0 authored by Kanzhe Jiang's avatar Kanzhe Jiang Committed by abat
Browse files

Remove redundent field in counterName

parent 341b0e28
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ public class CounterStore implements IFloodlightModule, ICounterStoreService {
String l4Type = String.format("%02x", ipV4.getProtocol());
if (TypeAliases.l4TypeAliasMap != null &&
TypeAliases.l4TypeAliasMap.containsKey(l4Type)) {
l4Type = "L4_" + TypeAliases.l4TypeAliasMap.get(l4Type);
l4Type = TypeAliases.l4TypeAliasMap.get(l4Type);
} else {
l4Type = "L4_" + l4Type;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment