Yuta HIGUCHI

checkstyle fix

......@@ -59,8 +59,8 @@ public final class DriverManager implements OpenFlowSwitchDriverFactory {
String sw = desc.getSwDesc();
if (sw.startsWith("LINC-OE")) {
log.debug("Optical Emulator LINC-OE with DPID:{} found..",dpid);
return new OFOpticalSwitchImplLINC13(dpid,desc);
log.debug("Optical Emulator LINC-OE with DPID:{} found..", dpid);
return new OFOpticalSwitchImplLINC13(dpid, desc);
}
log.warn("DriverManager could not identify switch desc: {}. "
......
......@@ -46,7 +46,7 @@ public class OFOpticalSwitchImplLINC13 extends AbstractOpenFlowSwitch {
private final Logger log =
LoggerFactory.getLogger(OFOpticalSwitchImplLINC13.class);
OFOpticalSwitchImplLINC13(Dpid dpid,OFDescStatsReply desc) {
OFOpticalSwitchImplLINC13(Dpid dpid, OFDescStatsReply desc) {
super(dpid);
//setAttribute("optical", "true");
driverHandshakeComplete = new AtomicBoolean(false);
......