aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/AbstractCharIterator.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/AbstractCharIterator.java')
-rw-r--r--src/org/apache/fop/fo/AbstractCharIterator.java21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/org/apache/fop/fo/AbstractCharIterator.java b/src/org/apache/fop/fo/AbstractCharIterator.java
index b040f413e..69d342dfd 100644
--- a/src/org/apache/fop/fo/AbstractCharIterator.java
+++ b/src/org/apache/fop/fo/AbstractCharIterator.java
@@ -13,16 +13,16 @@ import java.util.NoSuchElementException;
public abstract class AbstractCharIterator implements CharIterator, Cloneable {
- abstract public boolean hasNext();
+ public abstract boolean hasNext();
- abstract public char nextChar() throws NoSuchElementException ;
+ public abstract char nextChar() throws NoSuchElementException ;
public Object next() throws NoSuchElementException {
- return new Character(nextChar());
+ return new Character(nextChar());
}
public void remove() {
- throw new UnsupportedOperationException();
+ throw new UnsupportedOperationException();
}
@@ -30,10 +30,11 @@ public abstract class AbstractCharIterator implements CharIterator, Cloneable {
}
public Object clone() {
- try {
- return super.clone();
- } catch (CloneNotSupportedException ex) {
- return null;
- }
+ try {
+ return super.clone();
+ } catch (CloneNotSupportedException ex) {
+ return null;
+ }
}
-};
+}
+