diff --git a/src/main/resources/JavaTestfiles/ClassCanBeTyped.java b/src/main/resources/JavaTestfiles/ClassCanBeTyped.java index 53dcd26..56ce77d 100644 --- a/src/main/resources/JavaTestfiles/ClassCanBeTyped.java +++ b/src/main/resources/JavaTestfiles/ClassCanBeTyped.java @@ -15,14 +15,15 @@ public class ClassCanBeTyped { } do{ this.y = this.y + 1; - }while (this.y < 10); + }while (this.y < 10) if(this.x > 10) { this.x = 10; } else { this.x = 20; } - int k = 0; + int k; + k = 0; for ( k = 0; k < 10; k = k+1) { if(k == 5) { return; @@ -48,4 +49,4 @@ public class ClassCanBeTyped { } -} \ No newline at end of file +}