You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2022/08/15 13:41:22 UTC

[sling-maven-plugin] branch master updated: cosmetic: eliminate unused import

This is an automated email from the ASF dual-hosted git repository.

sseifert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new ea11fc7  cosmetic: eliminate unused import
ea11fc7 is described below

commit ea11fc7409a6aec0d6bb8aa28092c61b8c7f3ee0
Author: Stefan Seifert <st...@users.noreply.github.com>
AuthorDate: Mon Aug 15 15:41:13 2022 +0200

    cosmetic: eliminate unused import
---
 .../org/apache/sling/maven/bundlesupport/deploy/DeployMethod.java   | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/sling/maven/bundlesupport/deploy/DeployMethod.java b/src/main/java/org/apache/sling/maven/bundlesupport/deploy/DeployMethod.java
index bf98ac9..51573cc 100644
--- a/src/main/java/org/apache/sling/maven/bundlesupport/deploy/DeployMethod.java
+++ b/src/main/java/org/apache/sling/maven/bundlesupport/deploy/DeployMethod.java
@@ -22,8 +22,6 @@ import java.io.File;
 import java.io.IOException;
 import java.net.URI;
 
-import org.apache.sling.maven.bundlesupport.deploy.method.FelixPostDeployMethod;
-
 /**
  * Deploys/installs and undeploys/uninstalls bundles on a Sling instance.
  */
@@ -38,7 +36,7 @@ public interface DeployMethod {
      * @throws IOException in case of failure
      */
     void deploy(URI targetURL, File file, String bundleSymbolicName, DeployContext context) throws IOException;
-    
+
     /**
      * Undeploy/uninstall a bundle on a Sling instance.
      * @param targetURL Target URL
@@ -47,5 +45,5 @@ public interface DeployMethod {
      * @throws IOException in case of failure
      */
     void undeploy(URI targetURL, String bundleName, DeployContext context) throws IOException;
-    
+
 }