diff options
Diffstat (limited to 'src/org/apache/fop/area/inline/Unresolved.java')
-rw-r--r-- | src/org/apache/fop/area/inline/Unresolved.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/org/apache/fop/area/inline/Unresolved.java b/src/org/apache/fop/area/inline/Unresolved.java deleted file mode 100644 index 8af0c9f0c..000000000 --- a/src/org/apache/fop/area/inline/Unresolved.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * $Id$ - * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. - * For details on use and redistribution please refer to the - * LICENSE file included with these sources. - */ - -package org.apache.fop.area.inline; - -import org.apache.fop.area.Resolveable; - -public abstract class Unresolved extends InlineArea implements Resolveable { - boolean resolved = false; - - public boolean isResolved() { - return resolved; - } - -} |