Revision: 6121
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6121&view=rev
Author: manningr
Date: 2011-01-02 22:31:59 +0000 (Sun, 02 Jan 2011)
Log Message:
-----------
No longer needed.
Removed Paths:
-------------
trunk/sql12/plugins/mssql/src/main/java/net/sourceforge/squirrel_sql/plugins/mssql/MssqlResources.java
trunk/sql12/plugins/mysql/src/main/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResources.java
trunk/sql12/plugins/mysql/src/test/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResourcesTest.java
Deleted: trunk/sql12/plugins/mssql/src/main/java/net/sourceforge/squirrel_sql/plugins/mssql/MssqlResources.java
===================================================================
--- trunk/sql12/plugins/mssql/src/main/java/net/sourceforge/squirrel_sql/plugins/mssql/MssqlResources.java 2011-01-02 22:31:35 UTC (rev 6120)
+++ trunk/sql12/plugins/mssql/src/main/java/net/sourceforge/squirrel_sql/plugins/mssql/MssqlResources.java 2011-01-02 22:31:59 UTC (rev 6121)
@@ -1,35 +0,0 @@
-package net.sourceforge.squirrel_sql.plugins.mssql;
-
-/*
- * Copyright (C) 2004 Ryan Walberg <gen...@ya...>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-import net.sourceforge.squirrel_sql.client.plugin.IPlugin;
-import net.sourceforge.squirrel_sql.client.plugin.PluginResources;
-
-final class MssqlResources extends PluginResources {
- interface IMenuResourceKeys {
- String SHOW_STATISTICS = "show_statistics";
- String INDEXDEFRAG = "indexdefrag";
- String SHRINKDBFILE = "shrinkdbfile";
- String MSSQL = "mssql";
- }
-
- MssqlResources(String rsrcBundleBaseName, IPlugin plugin) {
- super(rsrcBundleBaseName, plugin);
- }
-}
Deleted: trunk/sql12/plugins/mysql/src/main/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResources.java
===================================================================
--- trunk/sql12/plugins/mysql/src/main/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResources.java 2011-01-02 22:31:35 UTC (rev 6120)
+++ trunk/sql12/plugins/mysql/src/main/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResources.java 2011-01-02 22:31:59 UTC (rev 6121)
@@ -1,45 +0,0 @@
-package net.sourceforge.squirrel_sql.plugins.mysql;
-/*
- * Copyright (C) 2002-2003 Colin Bell
- * co...@us...
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-import net.sourceforge.squirrel_sql.client.plugin.IPlugin;
-import net.sourceforge.squirrel_sql.client.plugin.PluginResources;
-/**
- * Plugin resources
- *
- * @author <A HREF="mailto:co...@us...">Colin Bell</A>
- */
-public class MysqlResources extends PluginResources
-{
- interface IMenuResourceKeys
- {
- String CHECK_TABLE = "checktable";
- String MYSQL = "mysql";
- }
-
- public MysqlResources(String rsrcBundleBaseName, IPlugin plugin)
- {
- super(rsrcBundleBaseName, plugin);
- }
-
- public interface IKeys
- {
- String USERS_IMAGE = "users";
- }
-
-}
Deleted: trunk/sql12/plugins/mysql/src/test/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResourcesTest.java
===================================================================
--- trunk/sql12/plugins/mysql/src/test/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResourcesTest.java 2011-01-02 22:31:35 UTC (rev 6120)
+++ trunk/sql12/plugins/mysql/src/test/java/net/sourceforge/squirrel_sql/plugins/mysql/MysqlResourcesTest.java 2011-01-02 22:31:59 UTC (rev 6121)
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2008 Rob Manning
- * man...@us...
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-package net.sourceforge.squirrel_sql.plugins.mysql;
-
-import static net.sourceforge.squirrel_sql.client.AppTestUtil.getMockPlugin;
-import net.sourceforge.squirrel_sql.fw.util.AbstractResourcesTest;
-
-import org.junit.Before;
-
-public class MysqlResourcesTest extends AbstractResourcesTest
-{
-
- @Before
- public void setUp() throws Exception
- {
- classUnderTest = new MysqlResources(MysqlPlugin.class.getName(), getMockPlugin(mockHelper));
- }
-
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|