• 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

Revision2479 (tree)
Time2022-11-05 10:52:44
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/plugin/DevLoader/src/main/java/org/apache/catalina/loader/DevLoader.java (revision 2478)
+++ trunk/plugin/DevLoader/src/main/java/org/apache/catalina/loader/DevLoader.java (revision 2479)
@@ -35,7 +35,7 @@
3535
3636 super.startInternal();
3737
38- final ClassLoader cl = super.getClassLoader();
38+ final ClassLoader cl = getClassLoader();
3939 if (!(cl instanceof WebappClassLoaderBase)) {
4040 logError("Unable to install WebappClassLoader !");
4141 return;
@@ -164,7 +164,7 @@
164164 * @return サーブレットコンテキスト
165165 */
166166 protected ServletContext getServletContext() {
167- return super.getContext().getServletContext();
167+ return getContext().getServletContext();
168168 }
169169
170170 /**