• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision127 (tree)
Time2015-10-08 21:57:37
Authort_nakayama1971

Log Message

clear warning

Change Summary

Incremental Difference

--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProject.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProject.java (revision 127)
@@ -549,11 +549,12 @@
549549 * @return IFolder
550550 */
551551 public IFolder getWorkFolder() {
552-// if (getRootDirFolder() == null) {
553-// return project.getFolder("work");
554-// } else {
555-// return getRootDirFolder().getFolder("work");
556-// }
552+ // TODO:
553+ // if (getRootDirFolder() == null) {
554+ // return project.getFolder("work");
555+ // } else {
556+ // return getRootDirFolder().getFolder("work");
557+ // }
557558
558559 return this.project.getFolder("work");
559560 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatManagerAppPreferencePage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatManagerAppPreferencePage.java (revision 127)
@@ -122,7 +122,7 @@
122122 * @param uEditor StringFieldEditor
123123 * @param pEditor StringFieldEditor
124124 */
125- public Adapter(final StringFieldEditor uEditor, final StringFieldEditor pEditor) {
125+ Adapter(final StringFieldEditor uEditor, final StringFieldEditor pEditor) {
126126 this.userEditor = uEditor;
127127 this.pwdEditor = pEditor;
128128 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectWebclasspathPropertyPage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectWebclasspathPropertyPage.java (revision 127)
@@ -263,7 +263,7 @@
263263 * @param list CheckedListDialogField
264264 * @param button Button
265265 */
266- public Adapter(final CheckedListDialogField<String> list, final Button button) {
266+ Adapter(final CheckedListDialogField<String> list, final Button button) {
267267 this.cpList = list;
268268 this.webClassPathCheck = button;
269269 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatSourcePathPreferencePage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatSourcePathPreferencePage.java (revision 127)
@@ -116,7 +116,7 @@
116116 * @param pEditor ProjectListEditor
117117 * @param bEditor BooleanFieldEditor
118118 */
119- public Listener(final ProjectListEditor pEditor, final BooleanFieldEditor bEditor) {
119+ Listener(final ProjectListEditor pEditor, final BooleanFieldEditor bEditor) {
120120 this.projectListEditor = pEditor;
121121 this.automaticEditor = bEditor;
122122 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectWARPropertyPage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectWARPropertyPage.java (revision 127)
@@ -157,7 +157,7 @@
157157 * @param sh Shell
158158 * @param txt Text
159159 */
160- public Adapter(final Shell sh, final Text txt) {
160+ Adapter(final Shell sh, final Text txt) {
161161 this.shell = sh;
162162 this.text = txt;
163163 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/Tomcat41Bootstrap.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/Tomcat41Bootstrap.java (revision 127)
@@ -25,10 +25,10 @@
2525 ArrayList<String> vmArgs = new ArrayList<>();
2626 vmArgs.add("-Dcatalina.home=\"" + getTomcatDir() + "\"");
2727
28-// This is not needed in Tomcat 4.1.24, does it come from a previous version
29-// Does not work with Tomcat 4.1.29
30-// String binDir = getTomcatDir() + File.separator + "bin";
31-// vmArgs.add("-Djava.endorsed.dirs=\"" + binDir + File.pathSeparator + commonEndorsedDir + "\"");
28+ // This is not needed in Tomcat 4.1.24, does it come from a previous version
29+ // Does not work with Tomcat 4.1.29
30+ // String binDir = getTomcatDir() + File.separator + "bin";
31+ // vmArgs.add("-Djava.endorsed.dirs=\"" + binDir + File.pathSeparator + commonEndorsedDir + "\"");
3232
3333 String commonEndorsedDir = getTomcatDir() + File.separator + "common" + File.separator + "endorsed";
3434 vmArgs.add("-Djava.endorsed.dirs=\"" + commonEndorsedDir + "\"");
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatJVMPreferencePage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatJVMPreferencePage.java (revision 127)
@@ -193,7 +193,7 @@
193193 TomcatLauncherPlugin.log(e);
194194 return false;
195195 }
196-// TomcatLauncherPlugin.getDefault().savePluginPreferences();
196+ // TomcatLauncherPlugin.getDefault().savePluginPreferences();
197197 return true;
198198 }
199199
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPluginResources.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPluginResources.java (revision 127)
@@ -55,20 +55,20 @@
5555 TomcatLauncherPlugin.getResourceString("pref.page.chooseversion.label");
5656
5757
58-// public static final String PREF_PAGE_VERSION3_LABEL =
59-// TomcatLauncherPlugin.getResourceString("pref.page.version3.label");
60-//
61-// public static final String PREF_PAGE_VERSION4_LABEL =
62-// TomcatLauncherPlugin.getResourceString("pref.page.version4.label");
63-//
64-// public static final String PREF_PAGE_VERSION4_1_LABEL =
65-// TomcatLauncherPlugin.getResourceString("pref.page.version41.label");
66-//
67-// public static final String PREF_PAGE_VERSION5_LABEL =
68-// TomcatLauncherPlugin.getResourceString("pref.page.version5.label");
69-//
70-// public static final String PREF_PAGE_VERSION6_LABEL =
71-// TomcatLauncherPlugin.getResourceString("pref.page.version6.label");
58+ // public static final String PREF_PAGE_VERSION3_LABEL =
59+ // TomcatLauncherPlugin.getResourceString("pref.page.version3.label");
60+ //
61+ // public static final String PREF_PAGE_VERSION4_LABEL =
62+ // TomcatLauncherPlugin.getResourceString("pref.page.version4.label");
63+ //
64+ // public static final String PREF_PAGE_VERSION4_1_LABEL =
65+ // TomcatLauncherPlugin.getResourceString("pref.page.version41.label");
66+ //
67+ // public static final String PREF_PAGE_VERSION5_LABEL =
68+ // TomcatLauncherPlugin.getResourceString("pref.page.version5.label");
69+ //
70+ // public static final String PREF_PAGE_VERSION6_LABEL =
71+ // TomcatLauncherPlugin.getResourceString("pref.page.version6.label");
7272
7373
7474 /** PREF_PAGE_VERSION7_LABEL */
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/NewTomcatProjectWizardPage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/NewTomcatProjectWizardPage.java (revision 127)
@@ -57,7 +57,7 @@
5757 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
5858
5959 createWebpathGroup(composite);
60-// new Label(composite, SWT.NULL);
60+ // new Label(composite, SWT.NULL);
6161 createUpdateXmlGroup(composite);
6262
6363 new Label(composite, SWT.NULL);
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPreferencePage.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPreferencePage.java (revision 127)
@@ -84,11 +84,11 @@
8484 TomcatLauncherPlugin.TOMCAT_PREF_VERSION_KEY,
8585 PREF_PAGE_CHOOSEVERSION_LABEL, 1,
8686 new String[][] {
87-// {PREF_PAGE_VERSION3_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION3},
88-// {PREF_PAGE_VERSION4_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION4},
89-// {PREF_PAGE_VERSION4_1_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION41},
90-// {PREF_PAGE_VERSION5_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION5},
91-// {PREF_PAGE_VERSION6_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION6},
87+ // {PREF_PAGE_VERSION3_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION3},
88+ // {PREF_PAGE_VERSION4_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION4},
89+ // {PREF_PAGE_VERSION4_1_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION41},
90+ // {PREF_PAGE_VERSION5_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION5},
91+ // {PREF_PAGE_VERSION6_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION6},
9292
9393 {PREF_PAGE_VERSION7_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION7},
9494 {PREF_PAGE_VERSION8_LABEL, TomcatLauncherPlugin.TOMCAT_VERSION8}
@@ -209,7 +209,7 @@
209209 TomcatLauncherPlugin.log(e);
210210 return false;
211211 }
212-// TomcatLauncherPlugin.getDefault().savePluginPreferences();
212+ // TomcatLauncherPlugin.getDefault().savePluginPreferences();
213213
214214 if (!this.oldVersion.equals(TomcatLauncherPlugin.getTomcatVersion())) {
215215 this.updateTomcatProjectsBuildPath();
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/VMLauncherUtility.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/VMLauncherUtility.java (revision 127)
@@ -96,7 +96,7 @@
9696 * @param saveConfig boolean
9797 * @throws CoreException CoreException
9898 */
99- public static void runVM(final String label, final String classToLaunch, final String[] classpath,
99+ static void runVM(final String label, final String classToLaunch, final String[] classpath,
100100 final String[] bootClasspath, final String vmArgs, final String prgArgs,
101101 final boolean debug, final boolean saveConfig) throws CoreException {
102102
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatLauncherPlugin.java (revision 126)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatLauncherPlugin.java (revision 127)
@@ -336,21 +336,21 @@
336336 public static TomcatBootstrap getTomcatBootstrap() {
337337 TomcatBootstrap tomcatBootsrap = null;
338338
339-// if (getTomcatVersion().equals(TOMCAT_VERSION3)) {
340-// tomcatBootsrap = new Tomcat3Bootstrap();
341-// }
342-// if (getTomcatVersion().equals(TOMCAT_VERSION4)) {
343-// tomcatBootsrap = new Tomcat4Bootstrap();
344-// }
345-// if (getTomcatVersion().equals(TOMCAT_VERSION41)) {
346-// tomcatBootsrap = new Tomcat41Bootstrap();
347-// }
348-// if (getTomcatVersion().equals(TOMCAT_VERSION5)) {
349-// tomcatBootsrap = new Tomcat5Bootstrap();
350-// }
351-// if (getTomcatVersion().equals(TOMCAT_VERSION6)) {
352-// tomcatBootsrap = new Tomcat6Bootstrap();
353-// }
339+ // if (getTomcatVersion().equals(TOMCAT_VERSION3)) {
340+ // tomcatBootsrap = new Tomcat3Bootstrap();
341+ // }
342+ // if (getTomcatVersion().equals(TOMCAT_VERSION4)) {
343+ // tomcatBootsrap = new Tomcat4Bootstrap();
344+ // }
345+ // if (getTomcatVersion().equals(TOMCAT_VERSION41)) {
346+ // tomcatBootsrap = new Tomcat41Bootstrap();
347+ // }
348+ // if (getTomcatVersion().equals(TOMCAT_VERSION5)) {
349+ // tomcatBootsrap = new Tomcat5Bootstrap();
350+ // }
351+ // if (getTomcatVersion().equals(TOMCAT_VERSION6)) {
352+ // tomcatBootsrap = new Tomcat6Bootstrap();
353+ // }
354354
355355
356356 if (getTomcatVersion().equals(TOMCAT_VERSION7)) {