]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Style only: fix indentation
authorVincent Hennebert <vhennebert@apache.org>
Tue, 17 Apr 2007 09:44:47 +0000 (09:44 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Tue, 17 Apr 2007 09:44:47 +0000 (09:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529544 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/pdf/DestinationComparator.java

index 0b4cd3eed6d503c473b3b62a186e1194a46a90dc..87d6a00ff25cc962dfa415b0dc8b617b69334e97 100644 (file)
@@ -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;
     }