Examples of GarbageCollectOperation


Examples of org.eclipse.egit.core.op.GarbageCollectOperation

          Repository repo = node.getRepository();
          String name = MessageFormat.format(
              UIText.GarbageCollectCommand_jobTitle,
              getRepositoryName(repo));
          this.setName(name);
          final GarbageCollectOperation op = new GarbageCollectOperation(
              repo);
          try {
            op.execute(monitor);
          } catch (CoreException e) {
            Activator.logError(MessageFormat.format(
                UIText.GarbageCollectCommand_failed, repo), e);
          }
        }
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.