3dcf6c
From c250eb3ebbb9afb650edc080708c5e4c3cccbb78 Mon Sep 17 00:00:00 2001
3dcf6c
From: Michael Simacek <msimacek@redhat.com>
3dcf6c
Date: Tue, 4 Oct 2016 18:02:26 +0200
3dcf6c
Subject: [PATCH 1/2] Disable removed commands
3dcf6c
3dcf6c
---
3dcf6c
 biz.aQute.bnd/src/aQute/bnd/main/bnd.java | 45 -------------------------------
3dcf6c
 1 file changed, 45 deletions(-)
3dcf6c
3dcf6c
diff --git a/biz.aQute.bnd/src/aQute/bnd/main/bnd.java b/biz.aQute.bnd/src/aQute/bnd/main/bnd.java
3dcf6c
index 1cc3216..c669e4a 100644
3dcf6c
--- a/biz.aQute.bnd/src/aQute/bnd/main/bnd.java
3dcf6c
+++ b/biz.aQute.bnd/src/aQute/bnd/main/bnd.java
3dcf6c
@@ -105,7 +105,6 @@ import aQute.bnd.osgi.Processor;
3dcf6c
 import aQute.bnd.osgi.Resource;
3dcf6c
 import aQute.bnd.osgi.Verifier;
3dcf6c
 import aQute.bnd.osgi.eclipse.EclipseClasspath;
3dcf6c
-import aQute.bnd.repository.maven.provider.NexusCommand;
3dcf6c
 import aQute.bnd.service.Actionable;
3dcf6c
 import aQute.bnd.service.RepositoryPlugin;
3dcf6c
 import aQute.bnd.service.action.Action;
3dcf6c
@@ -4064,50 +4063,6 @@ public class bnd extends Processor {
3dcf6c
 	}
3dcf6c
 
3dcf6c
 	/**
3dcf6c
-	 * Resolve command
3dcf6c
-	 * 
3dcf6c
-	 * @throws Exception
3dcf6c
-	 */
3dcf6c
-
3dcf6c
-	public void _resolve(ResolveCommand.ResolveOptions options) throws Exception {
3dcf6c
-		ResolveCommand rc = new ResolveCommand(this);
3dcf6c
-		String help = options._command().subCmd(options, rc);
3dcf6c
-		if (help != null)
3dcf6c
-			out.println(help);
3dcf6c
-		getInfo(rc);
3dcf6c
-		rc.close();
3dcf6c
-	}
3dcf6c
-
3dcf6c
-	/**
3dcf6c
-	 * Remote command
3dcf6c
-	 * 
3dcf6c
-	 * @throws Exception
3dcf6c
-	 */
3dcf6c
-
3dcf6c
-	public void _remote(RemoteCommand.RemoteOptions options) throws Exception {
3dcf6c
-		RemoteCommand rc = new RemoteCommand(this, options);
3dcf6c
-		String help = options._command().subCmd(options, rc);
3dcf6c
-		if (help != null)
3dcf6c
-			out.println(help);
3dcf6c
-		getInfo(rc);
3dcf6c
-		rc.close();
3dcf6c
-	}
3dcf6c
-
3dcf6c
-	/**
3dcf6c
-	 * Nexus commands
3dcf6c
-	 * 
3dcf6c
-	 * @throws Exception
3dcf6c
-	 */
3dcf6c
-
3dcf6c
-	public void _nexus(NexusCommand.NexusOptions options) throws Exception {
3dcf6c
-		NexusCommand rc = new NexusCommand(this, options);
3dcf6c
-		String help = options._command().subCmd(options, rc);
3dcf6c
-		if (help != null)
3dcf6c
-			out.println(help);
3dcf6c
-		getInfo(rc);
3dcf6c
-		rc.close();
3dcf6c
-	}
3dcf6c
-	/**
3dcf6c
 	 * Export a bndrun file
3dcf6c
 	 */
3dcf6c
 
3dcf6c
-- 
3dcf6c
2.13.5
3dcf6c