Package org.eclipse.jgit.revwalk

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

Related Classes of org.eclipse.jgit.revwalk.RenameCallback

Copyright © 2018 www.massapicom. 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.