Browse Source

ArrayList -> List.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@535885 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_94
Jeremias Maerki 17 years ago
parent
commit
02bb4b460f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/java/org/apache/fop/area/AreaTreeHandler.java

+ 1
- 1
src/java/org/apache/fop/area/AreaTreeHandler.java View File

@@ -415,7 +415,7 @@ public class AreaTreeHandler extends FOEventHandler {

finishPrevPageSequence(null);
// process fox:destination elements
ArrayList destinationList = rootFObj.getDestinationList();
List destinationList = rootFObj.getDestinationList();
if (destinationList != null) {
while (destinationList.size() > 0) {
Destination destination = (Destination) destinationList.remove(0);

Loading…
Cancel
Save