Sfoglia il codice sorgente

Style only: fix indentation


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529544 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_94
Vincent Hennebert 17 anni fa
parent
commit
ac8dd41ea7
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3
    3
      src/java/org/apache/fop/pdf/DestinationComparator.java

+ 3
- 3
src/java/org/apache/fop/pdf/DestinationComparator.java Vedi 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;
}

Loading…
Annulla
Salva