Skip to content

Instantly share code, notes, and snippets.

@miya2000
Created October 10, 2010 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miya2000/618829 to your computer and use it in GitHub Desktop.
Save miya2000/618829 to your computer and use it in GitHub Desktop.
Index: ReflectiveConnectionConfig.java
===================================================================
--- ReflectiveConnectionConfig.java (リビジョン 373)
+++ ReflectiveConnectionConfig.java (作業コピー)
@@ -149,22 +149,14 @@
*
* @see org.seasar.dolteng.eclipse.preferences.ConnectionConfig#getDriverPath()
*/
- public String getDriverPath() {
- return driverPath;
+ @Override
+ public String[] getDriverPaths() {
+ return new String[] { driverPath };
}
/*
* (non-Javadoc)
*
- * @see org.seasar.dolteng.eclipse.preferences.ConnectionConfig#setDriverPath(java.lang.String)
- */
- public void setDriverPath(String driverPath) {
- this.driverPath = driverPath;
- }
-
- /*
- * (non-Javadoc)
- *
* @see org.seasar.dolteng.eclipse.preferences.ConnectionConfig#getName()
*/
@Override
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment