<h1>Javassist version 3</h1>
-<h3>Copyright (C) 1999-2018 by Shigeru Chiba, All rights reserved.</h3>
+<h3>Copyright (C) 1999-2019 by Shigeru Chiba, All rights reserved.</h3>
<p><br></p>
<p>-version 3.25
<ul>
- <li>GitHub Issue #72 (PR #231), #241, #242 (PR #243), PR #244.
+ <li>GitHub Issue #72 (PR #231), #241, #242 (PR #243), PR #244,
+ #246 (PR #247), PR #250.
</ul>
<p>-version 3.24.1 on December 9, 2018
<project name="javassist" default="jar" basedir=".">
- <property name="dist-version" value="javassist-3.24.1-GA"/>
+ <property name="dist-version" value="javassist-3.25-GA"/>
<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
- <version>3.24.1-GA</version>
+ <version>3.25-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>
/**
* The version number of this release.
*/
- public static final String version = "3.24.1-GA";
+ public static final String version = "3.25-GA";
/**
* Prints the version number and the copyright notice.
*/
public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version);
- System.out.println("Copyright (C) 1999-2018 Shigeru Chiba."
+ System.out.println("Copyright (C) 1999-2019 Shigeru Chiba."
+ " All Rights Reserved.");
}
}
};
+ /**
+ * Changes so that the current thread will use the context class loader
+ * when a class is loaded.
+ * This method changes the behavior per thread unlike {@link useContextClassLoader}.
+ *
+ * @since 3.25
+ */
public static void setUseContextClassLoaderLocally() {
USE_CONTEXT_CLASS_LOADER_LOCALLY.set(true);
}
+ /**
+ * Changes so that the current thread will not use the context class loader
+ * when a class is loaded.
+ * Call this method before releasing the current thread for reuse.
+ * It invokes <code>ThreadLocal.remvoe()</code>.
+ *
+ * @since 3.25
+ */
public static void resetUseContextClassLoaderLocally() {
USE_CONTEXT_CLASS_LOADER_LOCALLY.remove();
}