diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 8501fe116ab..c03574d25f3 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -15,7 +15,9 @@
-
+
+
+
@@ -192,24 +194,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -240,16 +224,34 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -400,8 +402,6 @@
@@ -785,41 +787,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -923,6 +890,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1079,11 +1074,11 @@
-
-
-
-
-
+
+
+
+
+
localhost
@@ -1139,7 +1134,7 @@
-
+
@@ -1203,7 +1198,7 @@
-
+
@@ -1216,7 +1211,6 @@
-
@@ -1241,6 +1235,7 @@
+
@@ -1250,34 +1245,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -1306,13 +1273,6 @@
-
-
-
-
-
-
-
@@ -1341,13 +1301,6 @@
-
-
-
-
-
-
-
@@ -1357,7 +1310,49 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/translator/testFiles/java/arrayList/cases/access.kt b/translator/testFiles/java/arrayList/cases/access.kt
index d1faf27a2d5..58c151430c2 100644
--- a/translator/testFiles/java/arrayList/cases/access.kt
+++ b/translator/testFiles/java/arrayList/cases/access.kt
@@ -6,5 +6,5 @@ package foo
val a = ArrayList();
a.add(1)
a.add(2)
- return (a.size == 2) && (a.get(1) == 2) && (a.get(0) == 1);
+ return (a.size() == 2) && (a.get(1) == 2) && (a.get(0) == 1);
}
\ No newline at end of file
diff --git a/translator/testFiles/java/arrayList/cases/arrayAccess.kt b/translator/testFiles/java/arrayList/cases/arrayAccess.kt
index c92e4d8c851..b47cfa6e040 100644
--- a/translator/testFiles/java/arrayList/cases/arrayAccess.kt
+++ b/translator/testFiles/java/arrayList/cases/arrayAccess.kt
@@ -7,5 +7,5 @@ fun box() : Boolean {
a.add(1)
a.add(2)
a[1] = 100
- return (a.size == 2) && (a[1] == 100) && (a[0] == 1);
+ return (a.size() == 2) && (a[1] == 100) && (a[0] == 1);
}
\ No newline at end of file
diff --git a/translator/testFiles/java/arrayList/cases/emptyList.kt b/translator/testFiles/java/arrayList/cases/emptyList.kt
index 631ef3d038f..ec624c39ad9 100644
--- a/translator/testFiles/java/arrayList/cases/emptyList.kt
+++ b/translator/testFiles/java/arrayList/cases/emptyList.kt
@@ -4,5 +4,5 @@ import java.util.ArrayList;
fun box() : Boolean {
val a = ArrayList();
- return a.size == 0;
+ return a.size() == 0;
}
\ No newline at end of file