Remove implicit super()
This commit is contained in:
parent
a32fc2cda0
commit
1bd1afc456
@ -29,7 +29,6 @@ abstract class Entity {
|
||||
private UUID uuid;
|
||||
|
||||
this() {
|
||||
// writeln("I am creating an entity object");
|
||||
this.setUUID();
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,6 @@ abstract class Mob : Entity {
|
||||
abstract void onDeathPoof();
|
||||
|
||||
this() {
|
||||
super();
|
||||
// writeln("I am constructing a mob object");
|
||||
}
|
||||
|
||||
|
@ -6,8 +6,6 @@ import std.stdio;
|
||||
public class Skeleton : Mob {
|
||||
|
||||
this() {
|
||||
super();
|
||||
|
||||
// writeln("I am creating a zombie object");
|
||||
// writeln("My UUID is: ", this.getUUID());
|
||||
}
|
||||
|
@ -6,8 +6,6 @@ import std.stdio;
|
||||
public class Zombie : Mob {
|
||||
|
||||
this() {
|
||||
super();
|
||||
|
||||
// writeln("I am creating a zombie object");
|
||||
// writeln("My UUID is: ", this.getUUID());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user