Fix checkstyle
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / util / SyncCrudCounters.java
index 487f0650828d1e0d7b9434ca1a36f3092fb65c13..d1610e011c074cb4ac29009a0e157036cfe53f86 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -15,7 +15,6 @@ public class SyncCrudCounters {
     private final CrudCounts flowCrudCounts;
     private final CrudCounts groupCrudCounts;
     private final CrudCounts meterCrudCounts;
-    private long startNano;
 
     public SyncCrudCounters() {
         flowCrudCounts = new CrudCounts();
@@ -35,15 +34,6 @@ public class SyncCrudCounters {
         return meterCrudCounts;
     }
 
-
-    public long getStartNano() {
-        return startNano;
-    }
-
-    public void setStartNano(final long startNano) {
-        this.startNano = startNano;
-    }
-
     public void resetAll() {
         getGroupCrudCounts().setUpdated(0);
         getGroupCrudCounts().setAdded(0);