From e2c956177878f035866a61d8a3dfb82a607463aa Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Thu, 18 Jun 2015 13:08:20 +0200 Subject: [PATCH] Changed method from static to private. --- .../io/codearte/accurest/builder/SpockMethodBodyBuilder.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accurest-core/src/main/groovy/io/codearte/accurest/builder/SpockMethodBodyBuilder.groovy b/accurest-core/src/main/groovy/io/codearte/accurest/builder/SpockMethodBodyBuilder.groovy index e3c0b1388b..4da97ee58b 100644 --- a/accurest-core/src/main/groovy/io/codearte/accurest/builder/SpockMethodBodyBuilder.groovy +++ b/accurest-core/src/main/groovy/io/codearte/accurest/builder/SpockMethodBodyBuilder.groovy @@ -95,7 +95,7 @@ class SpockMethodBodyBuilder { } } - static String trimRepeatedQuotes(String toTrim) { + private String trimRepeatedQuotes(String toTrim) { if (toTrim.startsWith('"')) { return toTrim.replaceAll('"', '') }