diff options
author | Tore Engvig <tore@apache.org> | 2001-07-30 20:29:35 +0000 |
---|---|---|
committer | Tore Engvig <tore@apache.org> | 2001-07-30 20:29:35 +0000 |
commit | e0edd215721150e6c04ac49706622d6189cb0b42 (patch) | |
tree | 6b59b872d9c0e93f99316ea2f421209b71a97755 /src/org/apache/fop/fo/flow/BidiOverride.java | |
parent | eb57915dec9bcd907e495595efac60dbf3579ad8 (diff) | |
download | xmlgraphics-fop-e0edd215721150e6c04ac49706622d6189cb0b42.tar.gz xmlgraphics-fop-e0edd215721150e6c04ac49706622d6189cb0b42.zip |
Formatted code according to code standards.
Changed license to use short license.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194380 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/BidiOverride.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/BidiOverride.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/org/apache/fop/fo/flow/BidiOverride.java b/src/org/apache/fop/fo/flow/BidiOverride.java index 5fd7227e0..c6d7a1ba3 100644 --- a/src/org/apache/fop/fo/flow/BidiOverride.java +++ b/src/org/apache/fop/fo/flow/BidiOverride.java @@ -1,4 +1,5 @@ -/*-- $Id$ -- +/* + * $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. @@ -23,6 +24,7 @@ public class BidiOverride extends ToBeImplementedElement { PropertyList propertyList) throws FOPException { return new BidiOverride(parent, propertyList); } + } public static FObj.Maker maker() { @@ -30,7 +32,7 @@ public class BidiOverride extends ToBeImplementedElement { } protected BidiOverride(FObj parent, - PropertyList propertyList) throws FOPException { + PropertyList propertyList) throws FOPException { super(parent, propertyList); this.name = "fo:bidi-override"; } |