better method name

This commit is contained in:
rusefillc 2022-10-07 11:56:44 -04:00
parent ba73aff1fa
commit fd684a307b
1 changed files with 2 additions and 2 deletions

View File

@ -265,10 +265,10 @@ public class VariableRegistry {
value = value.trim();
if (value.isEmpty())
return false;
return isQ(value, quote);
return simpleIsQuoted(value, quote);
}
private static boolean isQ(String value, char quote) {
private static boolean simpleIsQuoted(String value, char quote) {
return value.charAt(0) == quote && value.charAt(value.length() - 1) == quote;
}