Polish formatting in Groovy scripts

This commit is contained in:
Sam Brannen 2018-03-07 15:34:55 +01:00
parent df0b39e8ac
commit 0f5a3e2647
3 changed files with 15 additions and 12 deletions

View File

@ -7,4 +7,5 @@ class GroovyCalculator implements Calculator {
int add(int x, int y) {
return x + y;
}
}

View File

@ -21,4 +21,5 @@ class GroovyCallCounter implements CallCounter {
void destroy() {
count = -200;
}
}

View File

@ -16,4 +16,5 @@ class DelegatingCalculator implements Calculator {
return delegate.add(x,y)
}
}