Author: rdonkin
Date: Thu Dec 5 20:57:36 2013
New Revision: 1548307
URL: http://svn.apache.org/r1548307
Log:
Apply PMD Rules.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/api/Document.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/api/Document.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/api/Document.java?rev=1548307&r1=1548306&r2=1548307&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/api/Document.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/api/Document.java
Thu Dec 5 20:57:36 2013
@@ -34,7 +34,7 @@ public interface Document {
*
* @return
*/
- public String getName();
+ String getName();
/**
* Reads the content of this document.
@@ -45,7 +45,7 @@ public interface Document {
* @throws CompositeDocumentException
* if this document can only be read as a composite archive
*/
- public Reader reader() throws IOException;
+ Reader reader() throws IOException;
/**
* Streams the document's contents.
@@ -54,19 +54,19 @@ public interface Document {
* @throws IOException
* when stream could not be opened
*/
- public InputStream inputStream() throws IOException;
+ InputStream inputStream() throws IOException;
/**
* Gets data describing this resource.
*
* @return not null
*/
- public MetaData getMetaData();
+ MetaData getMetaData();
/**
* Is this a composite document?
*
* @return true if composite, false otherwise
*/
- public boolean isComposite();
+ boolean isComposite();
}