mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-12 21:15:05 +00:00
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:
parent
b72207ccf4
commit
11272085d7
@ -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>
|
||||
<!-- ================================================== -->
|
||||
|
@ -351,7 +351,7 @@ public void testIterator() {
|
||||
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 void testIterator() {
|
||||
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user