summaryrefslogtreecommitdiff
path: root/test/418-const-string/src/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/418-const-string/src/Main.java')
-rw-r--r--test/418-const-string/src/Main.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/418-const-string/src/Main.java b/test/418-const-string/src/Main.java
index 7c1ffec18c..3b7d8e2a33 100644
--- a/test/418-const-string/src/Main.java
+++ b/test/418-const-string/src/Main.java
@@ -15,14 +15,14 @@
*/
public class Main {
- public static void main(String[] args) {
- // First call: may go in slow path.
- System.out.println($opt$ReturnHelloWorld());
- // Second call: no slow path.
- System.out.println($opt$ReturnHelloWorld());
- }
+ public static void main(String[] args) {
+ // First call: may go in slow path.
+ System.out.println($opt$ReturnHelloWorld());
+ // Second call: no slow path.
+ System.out.println($opt$ReturnHelloWorld());
+ }
- public static String $opt$ReturnHelloWorld() {
- return "Hello World";
- }
+ public static String $opt$ReturnHelloWorld() {
+ return "Hello World";
+ }
}