Saljack commented on a change in pull request #1528: [NETBEANS-519] Update jgit
URL: https://github.com/apache/netbeans/pull/1528#discussion_r342406698
##########
File path:
ide/libs.git/src/org/netbeans/libs/git/jgit/commands/MoveTreeCommand.java
##########
@@ -72,12 +70,14 @@ protected MoveTreeCommand (Repository repository,
GitClassFactory gitFactory, Fi
@Override
protected void run() throws GitException {
+ File sourceFile = tryNormalizeSymlink(this.source);
+ File targetFile = tryNormalizeSymlink(this.target);
if (!keepSourceTree && !after) {
rename();
}
+ sourceFile = tryNormalizeSymlink(sourceFile);
Review comment:
Yes. It just look weird for me on first sight.
----------------------------------------------------------------
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]
With regards,
Apache Git Services
---------------------------------------------------------------------
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