Skip to content

Commit 46e73b6

Browse files
committed
Added two classes to demonstrate CodeInventory
1 parent d7a9503 commit 46e73b6

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package eu.hansolo.fx.glucostatus;
2+
3+
@Deprecated(since = "ACI_05.01.2025 15:00:00,1736089200", forRemoval = false)
4+
public class ClassForChangeAnnotation {
5+
private String value;
6+
7+
8+
public ClassForChangeAnnotation(String value) {
9+
this.value = value;
10+
}
11+
12+
13+
public String getValue() { return this.value; }
14+
public void setValue(final String value) { this.value = value; }
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package eu.hansolo.fx.glucostatus;
2+
3+
@Deprecated(since = "ACI_03.01.2025 15:00:00,1735916400", forRemoval = true)
4+
public class ClassForRemoval {
5+
private String value;
6+
7+
8+
public ClassForRemoval() {
9+
this.value = "";
10+
}
11+
12+
13+
public String getValue() { return this.value; }
14+
public void setValue(final String value) { this.value = value; }
15+
}

0 commit comments

Comments
 (0)