commit | a21b9e8adb8badc8f5f56e27a203332b941cbd37 | [log] [tgz] |
---|---|---|
author | Stuart McCulloch <mcculls@apache.org> | Thu Aug 02 13:26:25 2012 +0000 |
committer | Stuart McCulloch <mcculls@apache.org> | Thu Aug 02 13:26:25 2012 +0000 |
tree | 2cf55b4c63204b8f662e67cf1272cc695485c0d5 | |
parent | efeb6d1d43ec98ffbadf34f48272690660ab4326 [diff] [blame] |
Another (in-place) bndlib update git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1368464 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/aQute/lib/json/DateHandler.java b/bundleplugin/src/main/java/aQute/lib/json/DateHandler.java index 784fcbe..cb3c27e 100644 --- a/bundleplugin/src/main/java/aQute/lib/json/DateHandler.java +++ b/bundleplugin/src/main/java/aQute/lib/json/DateHandler.java
@@ -18,14 +18,14 @@ } @Override - Object decode(String s) throws Exception { + Object decode(Decoder dec, String s) throws Exception { synchronized (sdf) { return sdf.parse(s); } } @Override - Object decode(Number s) throws Exception { + Object decode(Decoder dec, Number s) throws Exception { return new Date(s.longValue()); }