mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-145027 Display guessed variable name instead of "slot_"
This commit is contained in:
+1
-1
@@ -84,7 +84,7 @@ public class ArgumentValueDescriptorImpl extends ValueDescriptorImpl{
|
||||
body.accept(new LocalVariableNameFinder(getFirstLocalsSlot(method), nameBuilder));
|
||||
}
|
||||
finally {
|
||||
myName = nameBuilder.length() > 0? myDefaultName + ": " + nameBuilder.toString() : myDefaultName;
|
||||
myName = nameBuilder.length() > 0 ? nameBuilder.toString() + ": " + myDefaultName : myDefaultName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user