Minor code cleanup

This commit is contained in:
Joel Costigliola 2017-10-21 18:30:07 +13:00
parent cda778cc17
commit 762b7c0e5b
2 changed files with 4 additions and 1 deletions

View File

@ -33,6 +33,10 @@ public class Employee extends Person {
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}
}

View File

@ -20,5 +20,4 @@ package org.assertj.examples.data;
@Magical
public enum Ring {
oneRing, vilya, nenya, narya, dwarfRing, manRing;
}