From ad2bc94756525f4217db127c3a2c8ba2dcd08699 Mon Sep 17 00:00:00 2001 From: Max Medvedev Date: Tue, 2 Apr 2013 17:42:01 +0400 Subject: [PATCH] testdata --- .../groovy/inspections/rangeTypeCheck/All_after.groovy | 4 ++-- .../inspections/rangeTypeCheck/NotComparable_after.groovy | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/All_after.groovy b/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/All_after.groovy index 34b68dc84d3a..1106a1868530 100644 --- a/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/All_after.groovy +++ b/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/All_after.groovy @@ -10,8 +10,8 @@ class Foo implements Comparable { @Override int compareTo(Foo o) { - return 0 //To change body of implemented methods use File | Settings | File Templates. + return 0 //To change body of implemented methods use File | Settings | File Templates. } } -print new Foo()..new Foo() \ No newline at end of file +print new Foo()..new Foo() \ No newline at end of file diff --git a/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/NotComparable_after.groovy b/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/NotComparable_after.groovy index d2dfad4b1cff..c34954dc3c1e 100644 --- a/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/NotComparable_after.groovy +++ b/plugins/groovy/testdata/groovy/inspections/rangeTypeCheck/NotComparable_after.groovy @@ -4,12 +4,12 @@ class Foo implements Comparable { @Override int compareTo(Foo o) { - return 0 //To change body of implemented methods use File | Settings | File Templates. + return 0 //To change body of implemented methods use File | Settings | File Templates. } } class X { def foo() { - final ObjectRange range = new Foo()..new Foo() + final ObjectRange range = new Foo()..new Foo() } }