diff options
author | 2022-12-06 09:55:21 +0000 | |
---|---|---|
committer | 2022-12-06 15:10:32 +0000 | |
commit | c8c95288c70b8d05dfaa25cf52fa3621a35f1596 (patch) | |
tree | 271ed04f2b93ea43d1f4ca6d3104cacb36b880c2 /test/418-const-string/src/Main.java | |
parent | da91abf4ec6686fce3e17668743ee8f85191e1f3 (diff) |
ART: Change indentation to 4 spaces in run-test shards 15-19.
Created with
for testName in \
`git grep -E '^ public static void main\(String\[\]' \
-- test/*<i>-*/src/Main.java | \
sed '-es/\/src\/Main.java:.*//'`; \
do \
find $testName/ -type f -name *.java | \
xargs sed -E '-es/^(( )+)/\1\1/' --in-place ; \
done
with <i> manually set to 15 to 19.
Manually address many long lines and fix other style issues.
Test: testrunner.py --host --optimizing
Change-Id: I20e443155e4a2c91a6c484f24783c0d4b87ca928
Diffstat (limited to 'test/418-const-string/src/Main.java')
-rw-r--r-- | test/418-const-string/src/Main.java | 18 |
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"; + } } |