1
0
mirror of https://github.com/oliverschmidt/contiki.git synced 2025-04-05 19:37:23 +00:00

Removed unnecessary empty mote contructors

This commit is contained in:
Niclas Finne 2012-05-24 17:38:55 +02:00
parent 9753ad1301
commit 0a437bfbe1
3 changed files with 0 additions and 12 deletions
tools/cooja/apps/mspsim/src/se/sics/cooja/mspmote

@ -46,10 +46,6 @@ public class JCreateMote extends MspMote {
private JCreateNode mote;
public JCreateMote() {
super();
}
public JCreateMote(MspMoteType moteType, Simulation sim) {
super(moteType, sim);
}

@ -47,10 +47,6 @@ public class SentillaUSBMote extends MspMote {
private SentillaUSBNode mote;
public SentillaUSBMote() {
super();
}
public SentillaUSBMote(MspMoteType moteType, Simulation sim) {
super(moteType, sim);
}

@ -43,10 +43,6 @@ public class WismoteMote extends MspMote {
private static Logger logger = Logger.getLogger(WismoteMote.class);
public WismoteMote() {
super();
}
public WismoteMote(MspMoteType moteType, Simulation sim) {
super(moteType, sim);
}