|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import com.example.api.UrlRequest;
|
|
@@ -26,13 +25,12 @@ static Main getThis() {
|
|
|
26
25
|
double getThing() {
|
|
27
26
|
return thing;
|
|
28
27
|
}
|
|
29
|
-
|
|
28
|
+
|
|
30
|
-
|
|
29
|
+
private String doSomething() {
|
|
31
|
-
for(int i=3; i < 10;i++){
|
|
30
|
+
for (int i = 3; i < 10; i++) {
|
|
32
|
-
System.out.println("abc" +
|
|
31
|
+
System.out.println("abc" + i);
|
|
33
|
-
i);
|
|
34
|
-
|
|
32
|
+
}
|
|
35
|
-
}
|
|
33
|
+
}
|