aboutsummaryrefslogtreecommitdiffstats
path: root/testing/src
diff options
context:
space:
mode:
Diffstat (limited to 'testing/src')
-rw-r--r--testing/src/org/aspectj/testing/xml/SoftMessage.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/xml/SoftMessage.java b/testing/src/org/aspectj/testing/xml/SoftMessage.java
index e798f8f05..f11e55966 100644
--- a/testing/src/org/aspectj/testing/xml/SoftMessage.java
+++ b/testing/src/org/aspectj/testing/xml/SoftMessage.java
@@ -15,6 +15,7 @@
package org.aspectj.testing.xml;
import java.io.File;
+import java.util.Collections;
import java.util.Iterator;
import java.util.List;
@@ -287,4 +288,11 @@ public class SoftMessage implements IMessage { // XXX mutable dup of Message
public void setDetails(String string) {
details = string;
}
+
+ /* (non-Javadoc)
+ * @see org.aspectj.bridge.IMessage#getExtraSourceLocations()
+ */
+ public List getExtraSourceLocations() {
+ return Collections.EMPTY_LIST;
+ }
}