Changed method from static to private.

This commit is contained in:
Olga Maciaszek-Sharma
2015-06-18 13:08:20 +02:00
parent 84520dafa5
commit e2c9561778

View File

@@ -95,7 +95,7 @@ class SpockMethodBodyBuilder {
}
}
static String trimRepeatedQuotes(String toTrim) {
private String trimRepeatedQuotes(String toTrim) {
if (toTrim.startsWith('"')) {
return toTrim.replaceAll('"', '')
}