Author: vhennebert
Date: Fri Aug 27 14:02:34 2010
New Revision: 990155

URL: http://svn.apache.org/viewvc?rev=990155&view=rev
Log:
Fixed indentation

Modified:
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/PageBreakingAlgorithm.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/CharacterLayoutManager.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSBorderPainter.java

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/PageBreakingAlgorithm.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/PageBreakingAlgorithm.java?rev=990155&r1=990154&r2=990155&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/PageBreakingAlgorithm.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/PageBreakingAlgorithm.java
 Fri Aug 27 14:02:34 2010
@@ -514,7 +514,7 @@ class PageBreakingAlgorithm extends Brea
                     footnoteElementIndex
                         = getFootnoteList(footnoteListIndex).size() - 1;
                 } else if (((canDeferOldFN = canDeferOldFootnotes // CSOK: 
InnerAssignment
-                             (pageNode, elementIndex)) 
+                             (pageNode, elementIndex))
                             || newFootnotes)
                            && (footnoteSplit = getFootnoteSplit // CSOK: 
InnerAssignment
                                (pageNode, getLineWidth(activeNode.line) - 
actualWidth,
@@ -1125,7 +1125,7 @@ class PageBreakingAlgorithm extends Brea
      */
     protected void addNode(int line, KnuthNode node) {
         if (node.position < par.size() - 1 && line > 0
-            && (ipdDifference = compareIPDs(line - 1)) != 0) {  // CSOK: 
InnerAssignment
+                && (ipdDifference = compareIPDs(line - 1)) != 0) {  // CSOK: 
InnerAssignment
             log.trace("IPD changes at page " + line);
             if (bestNodeForIPDChange == null
                     || node.totalDemerits < 
bestNodeForIPDChange.totalDemerits) {

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/CharacterLayoutManager.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/CharacterLayoutManager.java?rev=990155&r1=990154&r2=990155&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/CharacterLayoutManager.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/CharacterLayoutManager.java
 Fri Aug 27 14:02:34 2010
@@ -194,9 +194,8 @@ public class CharacterLayoutManager exte
                                         areaInfo.alignmentContext,
                                         notifyPos(new LeafPosition(this, 0)), 
false));
             if (areaInfo.bHyphenated) {
-                returnList.add
-                    (new KnuthPenalty(hyphIPD, KnuthPenalty.FLAGGED_PENALTY, 
true,
-                                      new LeafPosition(this, -1), false));
+                returnList.add(new KnuthPenalty(hyphIPD, 
KnuthPenalty.FLAGGED_PENALTY, true,
+                        new LeafPosition(this, -1), false));
             }
         } else {
             // adjustable letter space
@@ -207,8 +206,8 @@ public class CharacterLayoutManager exte
                     new LeafPosition(this, -1), true));
             returnList.add(new 
KnuthGlue(letterSpaceIPD.mult(areaInfo.iLScount),
                     new LeafPosition(this, -1), true));
-            returnList.add
-                (new KnuthInlineBox(0, null, notifyPos(new LeafPosition(this, 
-1)), true));
+            returnList.add (
+                    new KnuthInlineBox(0, null, notifyPos(new 
LeafPosition(this, -1)), true));
             if (areaInfo.bHyphenated) {
                 returnList.add(new KnuthPenalty(hyphIPD, 
KnuthPenalty.FLAGGED_PENALTY, true,
                         new LeafPosition(this, -1), false));

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java?rev=990155&r1=990154&r2=990155&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
 Fri Aug 27 14:02:34 2010
@@ -356,7 +356,7 @@ public class LineLayoutManager extends I
             indent += (textAlign == Constants.EN_CENTER)
                       ? difference / 2 : (textAlign == Constants.EN_END) ? 
difference : 0;
             indent += (bestActiveNode.line == 1 && indentFirstPart && 
isFirstInBlock)
-                ? textIndent : 0;
+                      ? textIndent : 0;
             double ratio = (textAlign == Constants.EN_JUSTIFY
                 || difference < 0 && -difference <= 
bestActiveNode.availableShrink)
                         ? bestActiveNode.adjustRatio : 0;
@@ -711,7 +711,8 @@ public class LineLayoutManager extends I
 
                     // finish last paragraph if it was closed with a linefeed
                     if (lastElement.isPenalty()
-                        && ((KnuthPenalty) lastElement).getPenalty() == 
-KnuthPenalty.INFINITE) {
+                            && ((KnuthPenalty) lastElement).getPenalty()
+                                == -KnuthPenalty.INFINITE) {
                         // a penalty item whose value is -inf
                         // represents a preserved linefeed,
                         // which forces a line break

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSBorderPainter.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSBorderPainter.java?rev=990155&r1=990154&r2=990155&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSBorderPainter.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSBorderPainter.java 
Fri Aug 27 14:02:34 2010
@@ -75,7 +75,7 @@ public class PSBorderPainter extends Bor
             PSGenerator gen,
             float x1, float y1, float x2, float y2, boolean horz,  // CSOK: 
JavadocMethod
             boolean startOrBefore, int style, Color col)           // CSOK: 
JavadocMethod
-        throws IOException {                                    // CSOK: 
JavadocMethod
+            throws IOException {                                   // CSOK: 
JavadocMethod
         float w = x2 - x1;
         float h = y2 - y1;
         if ((w < 0) || (h < 0)) {



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to