Remove implicit super()

This commit is contained in:
jordan4ibanez 2022-08-01 21:10:46 -04:00
parent a32fc2cda0
commit 1bd1afc456
4 changed files with 0 additions and 6 deletions

View File

@ -29,7 +29,6 @@ abstract class Entity {
private UUID uuid;
this() {
// writeln("I am creating an entity object");
this.setUUID();
}

View File

@ -18,7 +18,6 @@ abstract class Mob : Entity {
abstract void onDeathPoof();
this() {
super();
// writeln("I am constructing a mob object");
}

View File

@ -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());
}

View File

@ -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());
}