Archived
0

EntityLocation.clone() unit test

This commit is contained in:
Daniil
2018-08-10 16:17:32 +07:00
parent 63d6716ce3
commit 039b055260
2 changed files with 101 additions and 1 deletions

View File

@@ -29,6 +29,6 @@ public class EntityLocation extends Location implements Cloneable {
@Override
public EntityLocation clone() {
return (EntityLocation) super.clone(); //TODO need test
return (EntityLocation) super.clone();
}
}