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() } }