Use compound assignment

GitOrigin-RevId: cd56a6beb2d2ad5443887f8608e8b9f0bd733eee
This commit is contained in:
Tagir Valeev
2021-04-07 02:24:00 +00:00
committed by intellij-monorepo-bot
parent 8c15288e7c
commit 19bbc8bde7
2 changed files with 2 additions and 2 deletions
@@ -182,7 +182,7 @@ class ExtractedClassBuilder {
}
int counter = 1;
while (true) {
name = name + counter;
name += counter;
if (!existsFieldWithName(name)) {
backPointerName = name;
return;
@@ -214,7 +214,7 @@ final class FilePartNodeRoot extends FilePartNode {
StringUtil.endsWith(path, 0, end, JarFileSystem.JAR_SEPARATOR) && end > 2 && path.charAt(end - 3) != '/';
if (isJarSeparator) {
names.add(JarFileSystem.JAR_SEPARATOR);
end = end - 2;
end -= 2;
continue;
}
if (path.charAt(end-1) == '/') {