Skip to content

Commit

Permalink
adds javadoc comments for PR #250
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Mar 17, 2019
1 parent 50430c1 commit e3f70e8
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Readme.html
Expand Up @@ -7,7 +7,7 @@

<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>

Expand Down Expand Up @@ -283,7 +283,8 @@ <h2>Changes</h2>

<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
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -6,7 +6,7 @@

<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"/>
Expand Down
Binary file modified javassist.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
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>

Expand Down
4 changes: 2 additions & 2 deletions src/main/javassist/CtClass.java
Expand Up @@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* 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.
Expand All @@ -80,7 +80,7 @@ public abstract class CtClass {
*/
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.");
}

Expand Down
15 changes: 15 additions & 0 deletions src/main/javassist/runtime/Desc.java
Expand Up @@ -41,10 +41,25 @@ protected Boolean initialValue() {
}
};

/**
* 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();
}
Expand Down

0 comments on commit e3f70e8

Please sign in to comment.