Skip to content

Commit

Permalink
Added missing methods.
Browse files Browse the repository at this point in the history
git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@5782 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
egonw committed Mar 7, 2006
1 parent 29313b8 commit 29f7757
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/org/openscience/cdk/database/DBWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ public String getFormatName() {
return "JDBC database";
}
public String getReaderClassName() { return null; };
public String getWriterClassName() { return null; };
public String getWriterClassName() { return null; }
public String getPreferredNameExtension() { return null; }
public String[] getNameExtensions() { return new String[0]; }
public String getMIMEType() { return null; }
};
}

Expand Down

0 comments on commit 29f7757

Please sign in to comment.