You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mc...@apache.org on 2011/10/28 18:52:45 UTC

svn commit: r1190445 - /commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java

Author: mcucchiara
Date: Fri Oct 28 16:52:45 2011
New Revision: 1190445

URL: http://svn.apache.org/viewvc?rev=1190445&view=rev
Log:
Reformatted code

Modified:
    commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java

Modified: commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java?rev=1190445&r1=1190444&r2=1190445&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java (original)
+++ commons/proper/ognl/trunk/src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java Fri Oct 28 16:52:45 2011
@@ -35,80 +35,80 @@ public class OldOgnlRuntimeWrapper
     implements RuntimeWrapper
 {
 
-        public void getFields( Class<?> c )
-            throws Exception
-        {
-            OgnlRuntime.getFields( c );
-        }
+    public void getFields( Class<?> c )
+        throws Exception
+    {
+        OgnlRuntime.getFields( c );
+    }
 
 
-        public void findParameterTypes( Class<?> targetClass, Method method )
-            throws Exception
-        {
-            OgnlRuntime.findParameterTypes( targetClass, method );
-        }
+    public void findParameterTypes( Class<?> targetClass, Method method )
+        throws Exception
+    {
+        OgnlRuntime.findParameterTypes( targetClass, method );
+    }
 
 
-        public void getConstructors( Class<?> c )
-            throws Exception
-        {
-            OgnlRuntime.getConstructors( c );
-        }
+    public void getConstructors( Class<?> c )
+        throws Exception
+    {
+        OgnlRuntime.getConstructors( c );
+    }
 
 
-        public void getMethods( Class<?> c, boolean staticMethods )
-            throws Exception
-        {
-            OgnlRuntime.getMethods( c, staticMethods );
-        }
+    public void getMethods( Class<?> c, boolean staticMethods )
+        throws Exception
+    {
+        OgnlRuntime.getMethods( c, staticMethods );
+    }
 
 
-        public void getDeclaredMethods( Class<?> c, String propertyName, boolean setters )
-            throws Exception
-        {
-            OgnlRuntime.getDeclaredMethods( c, propertyName, setters );
-        }
+    public void getDeclaredMethods( Class<?> c, String propertyName, boolean setters )
+        throws Exception
+    {
+        OgnlRuntime.getDeclaredMethods( c, propertyName, setters );
+    }
 
 
-        public void getParameterTypes( Method method )
-            throws Exception
-        {
-            OgnlRuntime.getParameterTypes( method );
-        }
+    public void getParameterTypes( Method method )
+        throws Exception
+    {
+        OgnlRuntime.getParameterTypes( method );
+    }
 
 
-        public void getParameterTypes( Constructor<?> constructor )
-            throws Exception
-        {
-            OgnlRuntime.getParameterTypes( constructor );
-        }
+    public void getParameterTypes( Constructor<?> constructor )
+        throws Exception
+    {
+        OgnlRuntime.getParameterTypes( constructor );
+    }
 
 
-        public void getPermission( Method method )
-            throws Exception
-        {
-            OgnlRuntime.getPermission( method );
-        }
+    public void getPermission( Method method )
+        throws Exception
+    {
+        OgnlRuntime.getPermission( method );
+    }
 
 
-        public void getPrimitiveDefaultValue( Class<?> type )
-            throws Exception
-        {
-            OgnlRuntime.getPrimitiveDefaultValue( type );
-        }
+    public void getPrimitiveDefaultValue( Class<?> type )
+        throws Exception
+    {
+        OgnlRuntime.getPrimitiveDefaultValue( type );
+    }
 
 
-        public void invokeMethod( Object o, Method method, Object[] args )
-            throws Exception
-        {
-            OgnlRuntime.invokeMethod( o, method, args );
-        }
+    public void invokeMethod( Object o, Method method, Object[] args )
+        throws Exception
+    {
+        OgnlRuntime.invokeMethod( o, method, args );
+    }
 
 
-        public void clearCache( )
-        {
-            OgnlRuntime.clearCache( );
-        }
+    public void clearCache()
+    {
+        OgnlRuntime.clearCache();
+    }
 
     public void getCompiler()
     {