mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
SVN 1.7: status through command line: fix NPE
This commit is contained in:
@@ -95,11 +95,12 @@ public class SvnStatusHandler extends DefaultHandler {
|
||||
}
|
||||
|
||||
private void newPending(final Convertor<File, SVNInfo> infoGetter) {
|
||||
myPending = new PortableStatus();
|
||||
myPending.setInfoGetter(new Getter<SVNInfo>() {
|
||||
final PortableStatus status = new PortableStatus();
|
||||
myPending = status;
|
||||
status.setInfoGetter(new Getter<SVNInfo>() {
|
||||
@Override
|
||||
public SVNInfo get() {
|
||||
return infoGetter.convert(myPending.getFile());
|
||||
return infoGetter.convert(status.getFile());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user