diff options
Diffstat (limited to 'tests/bugs183/442425/EntityMongoController.java')
-rw-r--r-- | tests/bugs183/442425/EntityMongoController.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/bugs183/442425/EntityMongoController.java b/tests/bugs183/442425/EntityMongoController.java index 345f32043..194d1777d 100644 --- a/tests/bugs183/442425/EntityMongoController.java +++ b/tests/bugs183/442425/EntityMongoController.java @@ -1,8 +1,7 @@ -package de.scrum_master.app; - public class EntityMongoController<T> implements IEntityController<T> { - private T entity; + private T entity; + + public void setEntity(T entity) { this.entity = entity; } - public void setEntity(T entity) { this.entity = entity; } - public T getEntity() { return entity; } + public T getEntity() { return entity; } } |