ACCUMULO-2061 Fixing whitespace nits
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/03baf916 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/03baf916 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/03baf916 Branch: refs/heads/master Commit: 03baf91611120dfdd36eaa5a824b99144b9eb36a Parents: 53b9f25 Author: Josh Elser <els...@apache.org> Authored: Thu Mar 20 13:23:04 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Thu Mar 20 18:59:30 2014 -0400 ---------------------------------------------------------------------- .../org/apache/accumulo/core/volume/NonConfiguredVolume.java | 2 +- .../org/apache/accumulo/core/volume/VolumeConfiguration.java | 4 ++-- .../main/java/org/apache/accumulo/core/volume/VolumeImpl.java | 2 +- .../org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java | 3 --- 4 files changed, 4 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/03baf916/core/src/main/java/org/apache/accumulo/core/volume/NonConfiguredVolume.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/volume/NonConfiguredVolume.java b/core/src/main/java/org/apache/accumulo/core/volume/NonConfiguredVolume.java index 3cfd1c2..3d56fa9 100644 --- a/core/src/main/java/org/apache/accumulo/core/volume/NonConfiguredVolume.java +++ b/core/src/main/java/org/apache/accumulo/core/volume/NonConfiguredVolume.java @@ -23,7 +23,7 @@ import org.apache.hadoop.fs.Path; /** * Volume implementation which represents a Volume for which we have a FileSystem but no base path because it is not configured via * {@link Property#INSTANCE_VOLUMES} - * + * * This is useful to handle volumes that have been removed from accumulo-site.xml but references to these volumes have not been updated. This Volume should * never be used to create new files, only to read existing files. */ http://git-wip-us.apache.org/repos/asf/accumulo/blob/03baf916/core/src/main/java/org/apache/accumulo/core/volume/VolumeConfiguration.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/volume/VolumeConfiguration.java b/core/src/main/java/org/apache/accumulo/core/volume/VolumeConfiguration.java index 71ad611..e7a51d7 100644 --- a/core/src/main/java/org/apache/accumulo/core/volume/VolumeConfiguration.java +++ b/core/src/main/java/org/apache/accumulo/core/volume/VolumeConfiguration.java @@ -85,7 +85,7 @@ public class VolumeConfiguration { /** * Compute the URIs to be used by Accumulo - * + * * @param conf * @return */ @@ -134,7 +134,7 @@ public class VolumeConfiguration { /** * Create a Volume with the given FileSystem that writes to the default path - * + * * @param fs * A FileSystem to write to * @return A Volume instance writing to the given FileSystem in the default path http://git-wip-us.apache.org/repos/asf/accumulo/blob/03baf916/core/src/main/java/org/apache/accumulo/core/volume/VolumeImpl.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/volume/VolumeImpl.java b/core/src/main/java/org/apache/accumulo/core/volume/VolumeImpl.java index f902c35..43ab96b 100644 --- a/core/src/main/java/org/apache/accumulo/core/volume/VolumeImpl.java +++ b/core/src/main/java/org/apache/accumulo/core/volume/VolumeImpl.java @@ -29,7 +29,7 @@ import org.apache.hadoop.fs.Path; import org.apache.log4j.Logger; /** - * Basic Volume implementation that contains a FileSystem and a base path + * Basic Volume implementation that contains a FileSystem and a base path * that should be used within that filesystem. */ public class VolumeImpl implements Volume { http://git-wip-us.apache.org/repos/asf/accumulo/blob/03baf916/core/src/test/java/org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java b/core/src/test/java/org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java index 937baf8..8d4a800 100644 --- a/core/src/test/java/org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java +++ b/core/src/test/java/org/apache/accumulo/core/volume/NonConfiguredVolumeTest.java @@ -25,9 +25,6 @@ import org.junit.Assert; import org.junit.Before; import org.junit.Test; -/** - * - */ public class NonConfiguredVolumeTest { private NonConfiguredVolume volume;