Tab police

Also removed extraneous trailing spaces

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918237 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-03-02 22:52:09 +00:00
parent b72207ccf4
commit 11272085d7
2 changed files with 43 additions and 43 deletions

View File

@ -48,11 +48,11 @@ limitations under the License.
<p>
To build the full website, run "mvn site".
The result will be in "target/site".
You must be online to successfully complete this target.
You must be online to successfully complete this target.
</p>
<p>
Further details can be found in the
<a href="http://commons.apache.org/building.html">commons build instructions</a>.
Further details can be found in the
<a href="http://commons.apache.org/building.html">commons build instructions</a>.
</p>
</section>
<!-- ================================================== -->

View File

@ -351,7 +351,7 @@ public class CharRangeTest extends TestCase {
assertEquals(Character.valueOf((char) 0), notFirstIt.next());
assertFalse(notFirstIt.hasNext());
try {
notFirstIt.next();
notFirstIt.next();
fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
assertTrue(true);
@ -363,7 +363,7 @@ public class CharRangeTest extends TestCase {
assertEquals(Character.valueOf(Character.MAX_VALUE), notLastIt.next());
assertFalse(notLastIt.hasNext());
try {
notLastIt.next();
notLastIt.next();
fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
assertTrue(true);