Subversion Repository Public Repository

litesoft

Diff Revisions 473 vs 610 for /trunk/zIntelliJ-Config/config/fileTemplates/MobileResourceBundle.java

Diff revisions: vs.
  @@ -314,8 +314,7 @@
314 314 */
315 315 private static boolean _continueLine(String line) {
316 316 int slashCount = 0;
317 - int index = line.length() - 1;
318 - while ((index >= 0) && (line.charAt(index--) == '\\'))
317 + for (int index = line.length() - 1; (0 <= index) && (line.charAt(index) == '\\'); index--)
319 318 slashCount++;
320 319 return (slashCount % 2 == 1);
321 320 }