Author: rdonkin
Date: Sat Dec  7 11:19:13 2013
New Revision: 1548872

URL: http://svn.apache.org/r1548872
Log:
Format Code.

Modified:
    
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/AbstractReport.java

Modified: 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/AbstractReport.java
URL: 
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/AbstractReport.java?rev=1548872&r1=1548871&r2=1548872&view=diff
==============================================================================
--- 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/AbstractReport.java
 (original)
+++ 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/AbstractReport.java
 Sat Dec  7 11:19:13 2013
@@ -15,26 +15,25 @@
  * KIND, either express or implied.  See the License for the    *
  * specific language governing permissions and limitations      *
  * under the License.                                           *
- */ 
+ */
 package org.apache.rat.report;
 
 import org.apache.rat.api.Document;
 import org.apache.rat.api.RatException;
 
-
 /**
  * Abstract base class for deriving implementations of {@link RatReport}.
  */
 public abstract class AbstractReport implements RatReport {
-    public void startReport() throws RatException {
-        // Does nothing
-    }
+       public void startReport() throws RatException {
+               // Does nothing
+       }
 
-    public void report(Document document) throws RatException {
-        // Does nothing
-    }
+       public void report(Document document) throws RatException {
+               // Does nothing
+       }
 
-    public void endReport() throws RatException {
-        // Does nothing
-    }
+       public void endReport() throws RatException {
+               // Does nothing
+       }
 }


Reply via email to