sharing is caring

This commit is contained in:
rusefillc 2022-10-07 11:57:04 -04:00
parent fd684a307b
commit 6485f97f49
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);
}
private static boolean isQuoted(String q) {
public static boolean isQuoted(String q) {
final int len = q.length();
return (len >= 2 && q.charAt(0) == '"' && q.charAt(len - 1) == '"');
}