• 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

Revision188 (tree)
Time2016-01-01 20:48:30
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/editors/ListFieldEditor.java (revision 187)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/editors/ListFieldEditor.java (revision 188)
@@ -7,6 +7,7 @@
77
88 import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_ADDBUTTON_LABEL;
99 import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_DOWNBUTTON_LABEL;
10+import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_LIST_SEPARATOR;
1011 import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_REMOVEBUTTON_LABEL;
1112 import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_UPBUTTON_LABEL;
1213 import static com.sysdeo.eclipse.tomcat.TomcatPluginResources.PREF_PAGE_UPDATEBUTTON_LABEL;
@@ -35,8 +36,6 @@
3536 import org.eclipse.swt.widgets.Shell;
3637 import org.eclipse.swt.widgets.Widget;
3738
38-import com.sysdeo.eclipse.tomcat.TomcatPluginResources;
39-
4039 /**
4140 * ListFieldEditor
4241 *
@@ -569,7 +568,7 @@
569568 for (int i = 0; i < items.length; i++) {
570569 try {
571570 if (0 < i) {
572- path.append(TomcatPluginResources.PREF_PAGE_LIST_SEPARATOR);
571+ path.append(PREF_PAGE_LIST_SEPARATOR);
573572 }
574573 path.append(URLEncoder.encode(items[i], "UTF-8"));
575574 } catch (final UnsupportedEncodingException e) {
@@ -591,7 +590,7 @@
591590 * @see #createList
592591 */
593592 private static String[] parseString(final String stringList) {
594- StringTokenizer st = new StringTokenizer(stringList, TomcatPluginResources.PREF_PAGE_LIST_SEPARATOR);
593+ StringTokenizer st = new StringTokenizer(stringList, PREF_PAGE_LIST_SEPARATOR);
595594 ArrayList<String> v = new ArrayList<>();
596595 while (st.hasMoreTokens()) {
597596 try {