Removed unnecessary empty mote contructors
This commit is contained in:
parent
9753ad1301
commit
0a437bfbe1
|
@ -46,10 +46,6 @@ public class JCreateMote extends MspMote {
|
||||||
|
|
||||||
private JCreateNode mote;
|
private JCreateNode mote;
|
||||||
|
|
||||||
public JCreateMote() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public JCreateMote(MspMoteType moteType, Simulation sim) {
|
public JCreateMote(MspMoteType moteType, Simulation sim) {
|
||||||
super(moteType, sim);
|
super(moteType, sim);
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,10 +47,6 @@ public class SentillaUSBMote extends MspMote {
|
||||||
|
|
||||||
private SentillaUSBNode mote;
|
private SentillaUSBNode mote;
|
||||||
|
|
||||||
public SentillaUSBMote() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public SentillaUSBMote(MspMoteType moteType, Simulation sim) {
|
public SentillaUSBMote(MspMoteType moteType, Simulation sim) {
|
||||||
super(moteType, sim);
|
super(moteType, sim);
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,10 +43,6 @@ public class WismoteMote extends MspMote {
|
||||||
|
|
||||||
private static Logger logger = Logger.getLogger(WismoteMote.class);
|
private static Logger logger = Logger.getLogger(WismoteMote.class);
|
||||||
|
|
||||||
public WismoteMote() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public WismoteMote(MspMoteType moteType, Simulation sim) {
|
public WismoteMote(MspMoteType moteType, Simulation sim) {
|
||||||
super(moteType, sim);
|
super(moteType, sim);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue