477478479480481482483484485486487
int len = current.length(); match = false; for (int i = 0; i < reservedPostfixes.length; i++) { if (current.endsWith(reservedPostfixes[i])) { ByteBuffer buf = new ByteBuffer(); buf.append('_'); buf.append(result); result = buf.toByteString();
462463464465466467468469470471472