aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/442425/EntityControllerAspect.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs183/442425/EntityControllerAspect.java')
-rw-r--r--tests/bugs183/442425/EntityControllerAspect.java15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/bugs183/442425/EntityControllerAspect.java b/tests/bugs183/442425/EntityControllerAspect.java
index 7540db933..af3211fcb 100644
--- a/tests/bugs183/442425/EntityControllerAspect.java
+++ b/tests/bugs183/442425/EntityControllerAspect.java
@@ -1,16 +1,15 @@
-package de.scrum_master.app;
-
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.*;
@Aspect
public class EntityControllerAspect {
- @DeclareParents(value = "@EntityController *", defaultImpl = EntityMongoController.class)
- private IEntityController iEntityController;
+ @DeclareParents(value = "@EntityController *", defaultImpl = EntityMongoController.class)
+ private IEntityController iEntityController;
+
/*
- @DeclareMixin("@EntityController *")
- private IEntityController createEntityControllerInstance() {
- return new EntityMongoController();
- }
+ @DeclareMixin("@EntityController *")
+ private IEntityController createEntityControllerInstance() {
+ return new EntityMongoController();
+ }
*/
}