You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/02/05 19:56:00 UTC

svn commit: r1442695 - /commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java

Author: britter
Date: Tue Feb  5 18:56:00 2013
New Revision: 1442695

URL: http://svn.apache.org/viewvc?rev=1442695&view=rev
Log:
Code formatting - not functional changes

Modified:
    commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java

Modified: commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java?rev=1442695&r1=1442694&r2=1442695&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java (original)
+++ commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/DefaultMappedPropertySetterAccessor.java Tue Feb  5 18:56:00 2013
@@ -1,9 +1,5 @@
 package org.apache.commons.beanutils2;
 
-import static org.apache.commons.beanutils2.Assertions.checkNotNull;
-
-import java.lang.reflect.Method;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -21,12 +17,18 @@ import java.lang.reflect.Method;
  * limitations under the License.
  */
 
+import static org.apache.commons.beanutils2.Assertions.checkNotNull;
+
+import java.lang.reflect.Method;
+
 final class DefaultMappedPropertySetterAccessor<B>
     implements MappedPropertySetterAccessor<B>
 {
 
     private final B bean;
+
     private final String propertyName;
+
     private final Method mappedSetterMethod;
 
     public DefaultMappedPropertySetterAccessor( B bean, String propertyName, Method mappedSetterMethod )