Showing
2 changed files
with
3 additions
and
3 deletions
... | @@ -59,8 +59,8 @@ public final class DriverManager implements OpenFlowSwitchDriverFactory { | ... | @@ -59,8 +59,8 @@ public final class DriverManager implements OpenFlowSwitchDriverFactory { |
59 | 59 | ||
60 | String sw = desc.getSwDesc(); | 60 | String sw = desc.getSwDesc(); |
61 | if (sw.startsWith("LINC-OE")) { | 61 | if (sw.startsWith("LINC-OE")) { |
62 | - log.debug("Optical Emulator LINC-OE with DPID:{} found..",dpid); | 62 | + log.debug("Optical Emulator LINC-OE with DPID:{} found..", dpid); |
63 | - return new OFOpticalSwitchImplLINC13(dpid,desc); | 63 | + return new OFOpticalSwitchImplLINC13(dpid, desc); |
64 | } | 64 | } |
65 | 65 | ||
66 | log.warn("DriverManager could not identify switch desc: {}. " | 66 | log.warn("DriverManager could not identify switch desc: {}. " | ... | ... |
... | @@ -46,7 +46,7 @@ public class OFOpticalSwitchImplLINC13 extends AbstractOpenFlowSwitch { | ... | @@ -46,7 +46,7 @@ public class OFOpticalSwitchImplLINC13 extends AbstractOpenFlowSwitch { |
46 | private final Logger log = | 46 | private final Logger log = |
47 | LoggerFactory.getLogger(OFOpticalSwitchImplLINC13.class); | 47 | LoggerFactory.getLogger(OFOpticalSwitchImplLINC13.class); |
48 | 48 | ||
49 | - OFOpticalSwitchImplLINC13(Dpid dpid,OFDescStatsReply desc) { | 49 | + OFOpticalSwitchImplLINC13(Dpid dpid, OFDescStatsReply desc) { |
50 | super(dpid); | 50 | super(dpid); |
51 | //setAttribute("optical", "true"); | 51 | //setAttribute("optical", "true"); |
52 | driverHandshakeComplete = new AtomicBoolean(false); | 52 | driverHandshakeComplete = new AtomicBoolean(false); | ... | ... |
-
Please register or login to post a comment