Examples of RenameCallback


Examples of org.eclipse.jgit.revwalk.RenameCallback

    return OrTreeFilter.create(followFilters);
  }

  private FollowFilter createFollowFilter(String path, DiffConfig diffConfig) {
    FollowFilter followFilter = FollowFilter.create(path, diffConfig);
    followFilter.setRenameCallback(new RenameCallback() {
      @Override
      public void renamed(DiffEntry entry) {
        renameTracker.getCallback().renamed(entry);
        if (fileViewerInterestingPaths != null) {
          fileViewerInterestingPaths.add(entry.getOldPath());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.