• 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

Revision200 (tree)
Time2016-01-07 22:32:09
Authort_nakayama1971

Log Message

correct deprecated

Change Summary

Incremental Difference

--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/VMLauncherUtility.java (revision 199)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/VMLauncherUtility.java (revision 200)
@@ -179,9 +179,11 @@
179179 config.setAttribute(ILaunchConfiguration.ATTR_SOURCE_LOCATOR_MEMENTO, locator.getMemento());
180180
181181 IVMInstall vmInstall = this.vmInstalled;
182- config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_INSTALL_TYPE,
183- vmInstall.getVMInstallType().getId());
184- config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_INSTALL_NAME, vmInstall.getName());
182+ config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_JRE_CONTAINER_PATH,
183+ vmInstall.getInstallLocation().getPath()); // TODO:TEST
184+ // config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_INSTALL_TYPE,
185+ // vmInstall.getVMInstallType().getId());
186+ // config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_INSTALL_NAME, vmInstall.getName());
185187 config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, false);
186188 config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_CLASSPATH,
187189 getClasspathMementos(this.classpath, this.bootClasspath));