Removed some whitespace.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@589042 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/util/Util.java b/framework/src/main/java/org/apache/felix/framework/util/Util.java
index c5d57a9..5446dc7 100644
--- a/framework/src/main/java/org/apache/felix/framework/util/Util.java
+++ b/framework/src/main/java/org/apache/felix/framework/util/Util.java
@@ -1,4 +1,4 @@
-/* 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -152,7 +152,7 @@
     public static Class loadClassUsingClass(Class clazz, String name)
     {
         Class loadedClass = null;
-    
+
         while (clazz != null)
         {
             // Get the class loader of the current class object.
@@ -167,7 +167,7 @@
             {
                 // Ignore and try interface class loaders.
             }
-    
+
             // Try to see if we can load the class from
             // one of the class's implemented interface
             // class loaders.
@@ -180,12 +180,12 @@
                     return loadedClass;
                 }
             }
-    
+
             // Try to see if we can load the class from
             // the super class class loader.
             clazz = clazz.getSuperclass();
         }
-    
+
         return null;
     }
 
@@ -271,7 +271,7 @@
 
     /**
      * Encode a raw byte array to a Base64 String.
-     * 
+     *
      * @param in Byte array to encode.
      * @param len Length of Base64 lines. 0 means no line breaks.
     **/