Author: rdonkin
Date: Thu Dec 5 20:49:53 2013
New Revision: 1548299
URL: http://svn.apache.org/r1548299
Log:
Format Code.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/document/MockLocation.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/document/MockLocation.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/document/MockLocation.java?rev=1548299&r1=1548298&r2=1548299&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/document/MockLocation.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/document/MockLocation.java
Thu Dec 5 20:49:53 2013
@@ -15,7 +15,7 @@
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
- */
+ */
package org.apache.rat.document;
import java.io.IOException;
@@ -27,46 +27,45 @@ import org.apache.rat.api.MetaData;
public class MockLocation implements Document {
- public String name;
- public String url;
- private final MetaData metaData = new MetaData();
-
- public MockLocation() {
- this("name", "url");
- }
-
- public MockLocation(String name) {
- this(name, "url");
- }
-
- public MockLocation(String name, String url) {
- super();
- this.name = name;
- this.url = url;
- }
-
- public String getName() {
- return name;
- }
-
- public String getURL() {
- return url;
- }
-
- public boolean isComposite() {
- return false;
- }
-
- public Reader reader() throws IOException {
- throw new UnsupportedOperationException();
- }
-
- public MetaData getMetaData() {
- return metaData;
- }
-
-
- public InputStream inputStream() throws IOException {
- throw new UnsupportedOperationException();
- }
+ public String name;
+ public String url;
+ private final MetaData metaData = new MetaData();
+
+ public MockLocation() {
+ this("name", "url");
+ }
+
+ public MockLocation(String name) {
+ this(name, "url");
+ }
+
+ public MockLocation(String name, String url) {
+ super();
+ this.name = name;
+ this.url = url;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public String getURL() {
+ return url;
+ }
+
+ public boolean isComposite() {
+ return false;
+ }
+
+ public Reader reader() throws IOException {
+ throw new UnsupportedOperationException();
+ }
+
+ public MetaData getMetaData() {
+ return metaData;
+ }
+
+ public InputStream inputStream() throws IOException {
+ throw new UnsupportedOperationException();
+ }
}