summaryrefslogtreecommitdiff
path: root/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java')
-rw-r--r--container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java b/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java
index 4695739..9925f7e 100644
--- a/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java
+++ b/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ParentEntity.java
@@ -4,14 +4,14 @@ import javax.persistence.Id;
public class ParentEntity {
@Id
- public final Long id;
+ public Long id;
+
+ private Integer age;
public ParentEntity(Long id) {
this.id = id;
}
- private Integer age;
-
public Integer getAge() {
return age;
}