Latest bnd code
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1350613 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/aQute/bnd/service/SignerPlugin.java b/bundleplugin/src/main/java/aQute/bnd/service/SignerPlugin.java
index aaef646..b503652 100644
--- a/bundleplugin/src/main/java/aQute/bnd/service/SignerPlugin.java
+++ b/bundleplugin/src/main/java/aQute/bnd/service/SignerPlugin.java
@@ -3,13 +3,15 @@
import aQute.lib.osgi.*;
public interface SignerPlugin {
- /**
- * Sign the current jar. The alias is the given certificate
- * keystore.
- *
- * @param builder The current builder that contains the jar to sign
- * @param alias The keystore certificate alias
- * @throws Exception When anything goes wrong
- */
- void sign(Builder builder, String alias) throws Exception;
+ /**
+ * Sign the current jar. The alias is the given certificate keystore.
+ *
+ * @param builder
+ * The current builder that contains the jar to sign
+ * @param alias
+ * The keystore certificate alias
+ * @throws Exception
+ * When anything goes wrong
+ */
+ void sign(Builder builder, String alias) throws Exception;
}