aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.junit.http
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2011-03-01 02:04:07 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2011-03-01 02:04:07 +0100
commitab949602ce0b16627c0e110ad353d231dad849b3 (patch)
tree507040f6f5344eadbaf44dc9b57330332df89417 /org.eclipse.jgit.junit.http
parentbda1e8fab901706d1b08ecb3915b35b02ffdd5ab (diff)
downloadjgit-ab949602ce0b16627c0e110ad353d231dad849b3.tar.gz
jgit-ab949602ce0b16627c0e110ad353d231dad849b3.zip
Adapt to Jetty 7.3 API change coming with Indigo
Indigo comes with Jetty 7.3 bringing some API changes. This still works with Jetty 7.1.6 shipped with Helios. Change-Id: If4f9d6ef6b45c94f8bb097f8b02c10317b47547b Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.junit.http')
-rw-r--r--org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java b/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java
index 3295d44391..0accfc8b65 100644
--- a/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java
+++ b/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java
@@ -183,4 +183,8 @@ public class RecordingLogger implements Logger {
public void debug(Throwable thrown) {
// Ignore (not relevant to test failures)
}
+
+ public void ignore(Throwable arg0) {
+ // Ignore (not relevant to test failures)
+ }
}