Mercurial Hosting > luan
comparison src/org/eclipse/jetty/util/component/FileDestroyable.java @ 820:8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 13 Sep 2016 23:13:06 -0600 |
parents | 3428c60d7cfc |
children |
comparison
equal
deleted
inserted
replaced
819:17bd0b170ed6 | 820:8e9db0bbf4f9 |
---|---|
23 import java.util.ArrayList; | 23 import java.util.ArrayList; |
24 import java.util.Collection; | 24 import java.util.Collection; |
25 import java.util.List; | 25 import java.util.List; |
26 | 26 |
27 import org.eclipse.jetty.util.IO; | 27 import org.eclipse.jetty.util.IO; |
28 import org.eclipse.jetty.util.log.Log; | 28 import org.slf4j.Logger; |
29 import org.eclipse.jetty.util.log.Logger; | 29 import org.slf4j.LoggerFactory; |
30 import org.eclipse.jetty.util.resource.Resource; | 30 import org.eclipse.jetty.util.resource.Resource; |
31 | 31 |
32 public class FileDestroyable implements Destroyable | 32 public class FileDestroyable implements Destroyable |
33 { | 33 { |
34 private static final Logger LOG = Log.getLogger(FileDestroyable.class); | 34 private static final Logger LOG = LoggerFactory.getLogger(FileDestroyable.class); |
35 final List<File> _files = new ArrayList<File>(); | 35 final List<File> _files = new ArrayList<File>(); |
36 | 36 |
37 public FileDestroyable() | 37 public FileDestroyable() |
38 { | 38 { |
39 } | 39 } |