Package org.eclipse.egit.core.op

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

Related Classes of org.eclipse.egit.core.op.GarbageCollectOperation

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.