diff options
author | Keiron Liddle <keiron@apache.org> | 2002-09-09 08:31:17 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2002-09-09 08:31:17 +0000 |
commit | 065009c088c0d77444db4669aadbf8e57c377375 (patch) | |
tree | 29667085e14aea76c86a623a2cecb0e55e92a852 | |
parent | a5d8356eeccbac6406f7cf45dad9bc198688bf92 (diff) | |
download | xmlgraphics-fop-065009c088c0d77444db4669aadbf8e57c377375.tar.gz xmlgraphics-fop-065009c088c0d77444db4669aadbf8e57c377375.zip |
doesn't make sense
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195159 13f79535-47bb-0310-9956-ffa450edef68
-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; - } - -} |