mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Use compound assignment
GitOrigin-RevId: cd56a6beb2d2ad5443887f8608e8b9f0bd733eee
This commit is contained in:
committed by
intellij-monorepo-bot
parent
8c15288e7c
commit
19bbc8bde7
@@ -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) == '/') {
|
||||
|
||||
Reference in New Issue
Block a user