jherkel commented on a change in pull request #2612:
URL: https://github.com/apache/netbeans/pull/2612#discussion_r550867066



##########
File path: 
java/refactoring.java/src/org/netbeans/modules/refactoring/java/plugins/RenameTransformer.java
##########
@@ -254,7 +254,7 @@ public boolean accept(Element e, TypeMirror type) {
             String useThis = null;
             String useSuper = null;
 
-            if (elementToFind!=null && elementToFind.getKind().isField()) {
+            if (elementToFind!=null && elementToFind.getKind().isField() && 
tree.getKind() != Tree.Kind.MEMBER_SELECT) {

Review comment:
       Good point. I think the whole if statement started from line 262 can be 
deleted. Because this part of code (started from line 257) checks if a new name 
for refactored field doesn't have the same name as some local variables do. For 
this case it is adding an outer scope (this or class name for static fields). 
But I think if field is a member i.e. tree.getKind() == Tree.Kind.MEMBER_SELECT 
we don't need to do anything because we have a scope.  




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to