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/compatibility/GenericParameter.java b/bundleplugin/src/main/java/aQute/bnd/compatibility/GenericParameter.java
index e187f3c..5118bf3 100644
--- a/bundleplugin/src/main/java/aQute/bnd/compatibility/GenericParameter.java
+++ b/bundleplugin/src/main/java/aQute/bnd/compatibility/GenericParameter.java
@@ -1,22 +1,24 @@
package aQute.bnd.compatibility;
public class GenericParameter {
- String name;
- GenericType bounds[];
-
+ String name;
+ GenericType bounds[];
+
public GenericParameter(String name, GenericType[] bounds) {
this.name = name;
this.bounds = bounds;
if (bounds == null || bounds.length == 0)
- this.bounds = new GenericType[] { new GenericType( Object.class) };
+ this.bounds = new GenericType[] {
+ new GenericType(Object.class)
+ };
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(name);
- if ( bounds != null && bounds.length > 0) {
- for ( GenericType gtype : bounds ) {
- sb.append( ":");
+ if (bounds != null && bounds.length > 0) {
+ for (GenericType gtype : bounds) {
+ sb.append(":");
sb.append(gtype);
}
}