From: Vincent Hennebert Date: Tue, 17 Apr 2007 09:44:47 +0000 (+0000) Subject: Style only: fix indentation X-Git-Tag: fop-0_94~139 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ac8dd41ea775b19c852423382d7a0df6e5a69465;p=xmlgraphics-fop.git Style only: fix indentation git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529544 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/pdf/DestinationComparator.java b/src/java/org/apache/fop/pdf/DestinationComparator.java index 0b4cd3eed..87d6a00ff 100644 --- a/src/java/org/apache/fop/pdf/DestinationComparator.java +++ b/src/java/org/apache/fop/pdf/DestinationComparator.java @@ -32,9 +32,9 @@ public class DestinationComparator implements java.util.Comparator { public int compare (Object obj1, Object obj2) { if (obj1 instanceof PDFDestination && obj2 instanceof PDFDestination) { - PDFDestination dest1 = (PDFDestination)obj1; - PDFDestination dest2 = (PDFDestination)obj2; - return dest1.getIDRef().compareTo(dest2.getIDRef()); + PDFDestination dest1 = (PDFDestination)obj1; + PDFDestination dest2 = (PDFDestination)obj2; + return dest1.getIDRef().compareTo(dest2.getIDRef()); } return 0; }