Formatting.
diff --git a/src/main/java/org/apache/commons/beanutils2/Converter.java b/src/main/java/org/apache/commons/beanutils2/Converter.java
index 2562d78..1b85b19 100644
--- a/src/main/java/org/apache/commons/beanutils2/Converter.java
+++ b/src/main/java/org/apache/commons/beanutils2/Converter.java
@@ -15,10 +15,8 @@
  * limitations under the License.
  */
 
-
 package org.apache.commons.beanutils2;
 
-
 /**
  * <p>General purpose data type converter that can be registered and used
  * within the BeanUtils package to manage the conversion of objects from
@@ -34,10 +32,8 @@
  *
  * @since 1.3
  */
-
 public interface Converter {
 
-
     /**
      * Convert the specified input object into an output object of the
      * specified type.
@@ -52,5 +48,4 @@
      */
     public <T> T convert(Class<T> type, Object value);
 
-
 }