sharing is caring

This commit is contained in:
rusefillc 2022-10-07 11:57:04 -04:00
parent 8b7878c49e
commit 0e3c181f8a
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class EnumIniField extends IniField {
return image.getByteBuffer(getOffset(), 4); return image.getByteBuffer(getOffset(), 4);
} }
private static boolean isQuoted(String q) { public static boolean isQuoted(String q) {
final int len = q.length(); final int len = q.length();
return (len >= 2 && q.charAt(0) == '"' && q.charAt(len - 1) == '"'); return (len >= 2 && q.charAt(0) == '"' && q.charAt(len - 1) == '"');
} }