Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin12/src/java/lang/String.java')
-rw-r--r--JCL/converterJclMin12/src/java/lang/String.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/JCL/converterJclMin12/src/java/lang/String.java b/JCL/converterJclMin12/src/java/lang/String.java
new file mode 100644
index 0000000000..38fc3e31f3
--- /dev/null
+++ b/JCL/converterJclMin12/src/java/lang/String.java
@@ -0,0 +1,5 @@
+package java.lang;
+
+public class String implements CharSequence {
+ public int length() { return 0; }
+}

Back to the top