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>
This commit is contained in:
Matthias Sohn 2011-03-01 02:04:07 +01:00
parent bda1e8fab9
commit ab949602ce
1 changed files with 4 additions and 0 deletions

View File

@ -183,4 +183,8 @@ public void debug(String msg, Object... args) {
public void debug(Throwable thrown) {
// Ignore (not relevant to test failures)
}
public void ignore(Throwable arg0) {
// Ignore (not relevant to test failures)
}
}