コード例 #1
0
 @Override
 public long getLastModified(String name) {
   Resource resource = getResource(name);
   try {
     return resource.lastModified();
   } catch (IOException ex) {
     return -1;
   }
 }
コード例 #2
0
 @Override
 public long lastModified() throws IOException {
   return delegate.lastModified();
 }