Skip to content

Commit

Permalink
plugin I/F changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
turbou committed Nov 18, 2015
1 parent aa0fec7 commit 46ead68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Shift_JIS"?>
<project name="TS_InfoCopy" default="jar" basedir="." >
<target name="jar">
<jar basedir="bin" jarfile="infocopy.jar">
<jar basedir="bin" jarfile="infocopy-1.0.0.jar">
<manifest>
<attribute name="Plugin-Class" value="jp.co.tabocom.tsplugin.infocopy.InfoCopyPlugin"/>
</manifest>
Expand Down
4 changes: 2 additions & 2 deletions src/jp/co/tabocom/tsplugin/infocopy/InfoCopyPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public PreferencePage getPreferencePage() {
}

@Override
public void initialize() {
public void initialize() throws Exception {
}

@Override
public void teminate(PreferenceStore preferenceStore) {
public void teminate(PreferenceStore preferenceStore) throws Exception {
}
}

0 comments on commit 46ead68

Please sign in to comment.