diff -r 74139325d305 -r 7f84f4de2893 src/org/sonews/storage/impl/JDBCDatabaseProvider.java --- a/src/org/sonews/storage/impl/JDBCDatabaseProvider.java Sun Aug 29 18:17:37 2010 +0200 +++ b/src/org/sonews/storage/impl/JDBCDatabaseProvider.java Mon Jun 06 20:12:21 2011 +0200 @@ -15,7 +15,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package org.sonews.storage.impl; import java.sql.SQLException; @@ -30,21 +29,18 @@ * @author Christian Lins * @since sonews/1.0 */ -public class JDBCDatabaseProvider implements StorageProvider -{ +public class JDBCDatabaseProvider implements StorageProvider { protected static final Map instances = new ConcurrentHashMap(); @Override - public boolean isSupported(String uri) - { + public boolean isSupported(String uri) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Storage storage(Thread thread) - throws StorageBackendException - { + throws StorageBackendException { try { if (!instances.containsKey(Thread.currentThread())) { JDBCDatabase db = new JDBCDatabase();