diff -r ed84c8bdd87b -r 11402b568081 src/org/sonews/storage/StorageProvider.java --- a/src/org/sonews/storage/StorageProvider.java Sun Aug 29 17:28:58 2010 +0200 +++ b/src/org/sonews/storage/StorageProvider.java Wed May 04 18:34:21 2011 +0200 @@ -26,15 +26,14 @@ public interface StorageProvider { - public boolean isSupported(String uri); + public boolean isSupported(String uri); - /** - * This method returns the reference to the associated storage. - * The reference MAY be unique for each thread. In any case it MUST be - * thread-safe to use this method. - * @return The reference to the associated Storage. - */ - public Storage storage(Thread thread) - throws StorageBackendException; - + /** + * This method returns the reference to the associated storage. + * The reference MAY be unique for each thread. In any case it MUST be + * thread-safe to use this method. + * @return The reference to the associated Storage. + */ + public Storage storage(Thread thread) + throws StorageBackendException; }