summaryrefslogtreecommitdiffstats
path: root/wizards/com/sun/star/wizards/web/status/ErrorLog.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/web/status/ErrorLog.java')
-rw-r--r--wizards/com/sun/star/wizards/web/status/ErrorLog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/web/status/ErrorLog.java b/wizards/com/sun/star/wizards/web/status/ErrorLog.java
index 79a356c0642e..ef751398eb54 100644
--- a/wizards/com/sun/star/wizards/web/status/ErrorLog.java
+++ b/wizards/com/sun/star/wizards/web/status/ErrorLog.java
@@ -18,8 +18,8 @@
package com.sun.star.wizards.web.status;
+import java.util.ArrayList;
import java.util.List;
-import java.util.Vector;
/**
* @author rpiterman
@@ -30,7 +30,7 @@ import java.util.Vector;
public class ErrorLog implements ErrorReporter
{
- private List errors = new Vector();
+ private List errors = new ArrayList();
public void error(Exception ex, Object obj, String s)
{