Committed by
Gerrit Code Review
Remove logger due to data class
Change-Id: Id08acbb63008a1f80a9c7532b5c3fd08a43655b5
Showing
1 changed file
with
0 additions
and
4 deletions
| ... | @@ -16,7 +16,6 @@ | ... | @@ -16,7 +16,6 @@ |
| 16 | package org.onlab.onos.net.flow; | 16 | package org.onlab.onos.net.flow; |
| 17 | 17 | ||
| 18 | import static com.google.common.base.MoreObjects.toStringHelper; | 18 | import static com.google.common.base.MoreObjects.toStringHelper; |
| 19 | -import static org.slf4j.LoggerFactory.getLogger; | ||
| 20 | 19 | ||
| 21 | import java.util.Objects; | 20 | import java.util.Objects; |
| 22 | 21 | ||
| ... | @@ -24,12 +23,9 @@ import org.onlab.onos.core.ApplicationId; | ... | @@ -24,12 +23,9 @@ import org.onlab.onos.core.ApplicationId; |
| 24 | import org.onlab.onos.core.DefaultGroupId; | 23 | import org.onlab.onos.core.DefaultGroupId; |
| 25 | import org.onlab.onos.core.GroupId; | 24 | import org.onlab.onos.core.GroupId; |
| 26 | import org.onlab.onos.net.DeviceId; | 25 | import org.onlab.onos.net.DeviceId; |
| 27 | -import org.slf4j.Logger; | ||
| 28 | 26 | ||
| 29 | public class DefaultFlowRule implements FlowRule { | 27 | public class DefaultFlowRule implements FlowRule { |
| 30 | 28 | ||
| 31 | - private static final Logger log = getLogger(DefaultFlowRule.class); | ||
| 32 | - | ||
| 33 | private final DeviceId deviceId; | 29 | private final DeviceId deviceId; |
| 34 | private final int priority; | 30 | private final int priority; |
| 35 | private final TrafficSelector selector; | 31 | private final TrafficSelector selector; | ... | ... |
-
Please register or login to post a comment