src/org/sonews/storage/StorageProvider.java
changeset 42 7f84f4de2893
parent 37 74139325d305
     1.1 --- a/src/org/sonews/storage/StorageProvider.java	Sun Aug 29 18:17:37 2010 +0200
     1.2 +++ b/src/org/sonews/storage/StorageProvider.java	Mon Jun 06 20:12:21 2011 +0200
     1.3 @@ -15,7 +15,6 @@
     1.4   *   You should have received a copy of the GNU General Public License
     1.5   *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
     1.6   */
     1.7 -
     1.8  package org.sonews.storage;
     1.9  
    1.10  /**
    1.11 @@ -23,8 +22,7 @@
    1.12   * @author Christian Lins
    1.13   * @since sonews/1.0
    1.14   */
    1.15 -public interface StorageProvider
    1.16 -{
    1.17 +public interface StorageProvider {
    1.18  
    1.19  	public boolean isSupported(String uri);
    1.20  
    1.21 @@ -35,5 +33,5 @@
    1.22  	 * @return The reference to the associated Storage.
    1.23  	 */
    1.24  	public Storage storage(Thread thread)
    1.25 -		throws StorageBackendException;
    1.26 +			throws StorageBackendException;
    1.27  }