We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45411e1 commit 2a31ff4Copy full SHA for 2a31ff4
src/main/java/de/nerden/samples/graal/Main.java
@@ -6,7 +6,7 @@ public class Main {
6
7
public static void main(String[] args) {
8
Test t = new Test();
9
- t.setAbc("LOL");
+ t.setSomeValue("Hello World!");
10
Javalin app = Javalin.create().start(7000);
11
app.get("/", ctx -> ctx.json(t));
12
}
src/main/java/de/nerden/samples/graal/Test.java
@@ -2,13 +2,14 @@
2
3
public class Test {
4
5
- private String abc;
+ private String someValue
+ ;
- public String getAbc() {
- return abc;
+ public String getSomeValue() {
+ return someValue;
- public void setAbc(String abc) {
- this.abc = abc;
+ public void setSomeValue(String someValue) {
13
+ this.someValue = someValue;
14
15
0 commit comments