Skip to content

Commit

Permalink
Revert LinkedList
Browse files Browse the repository at this point in the history
  • Loading branch information
ROPARTZ Erwan DTSI/DSI authored and aaime committed Jan 28, 2025
1 parent deb8d44 commit c026af0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
*/
package org.geoserver.wfs;

import java.util.LinkedList;
import java.util.ArrayList;
import java.util.List;
import org.geotools.api.feature.Feature;
import org.geotools.data.DataUtilities;

public class TransactionListenerTester implements TransactionListener {
List<TransactionEvent> events = new LinkedList<>();
List<Feature> features = new LinkedList<>();
List<TransactionEvent> events = new ArrayList<>();
List<Feature> features = new ArrayList<>();

public void clear() {
events.clear();
Expand Down

0 comments on commit c026af0

Please sign in to comment.