From 74aa3eb4aa083b75c8ebd37caee8f76d9499818e Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 12 Jul 2012 20:53:45 +0200 Subject: [PATCH] Fix test data --- .../ReplaceReferenceExpressionWithTypeElement.java | 10 +++++----- ...eplaceReferenceExpressionWithTypeElement_after.java | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement.java b/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement.java index e2de8f6bb2ee..5fc12c21c0db 100644 --- a/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement.java +++ b/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement.java @@ -1,7 +1,7 @@ class FooFooFooFooFoo { - { - int a = 0; - ABCD - foo(new String[]{"a"}, 1); - } + { + int a = 0; + ABCD + foo(new String[]{"a"}, 1); + } } \ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement_after.java b/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement_after.java index fb7fee5843a4..d2b3224466a1 100644 --- a/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement_after.java +++ b/java/java-tests/testData/codeInsight/completion/className/java/ReplaceReferenceExpressionWithTypeElement_after.java @@ -1,9 +1,9 @@ import foo.bar.ABCDEF; class FooFooFooFooFoo { - { - int a = 0; - ABCDEF - foo(new String[]{"a"}, 1); - } + { + int a = 0; + ABCDEF + foo(new String[]{"a"}, 1); + } } \ No newline at end of file