Browse Source

updates for release 3.23.0-GA

tags/rel_3_23_0_ga^0
chibash 5 years ago
parent
commit
dfce4e4b3d

+ 1
- 1
README.md View File

@@ -1,7 +1,7 @@
Java bytecode engineering toolkit
### [Javassist version 3](http://www.javassist.org)

Copyright (C) 1999-2017 by Shigeru Chiba, All rights reserved.
Copyright (C) 1999-2018 by Shigeru Chiba, All rights reserved.

Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java; it enables Java

+ 2
- 2
Readme.html View File

@@ -7,7 +7,7 @@

<h1>Javassist version 3</h1>

<h3>Copyright (C) 1999-2017 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2018 by Shigeru Chiba, All rights reserved.</h3>

<p><br></p>

@@ -281,7 +281,7 @@ see javassist.Dump.

<h2>Changes</h2>

<p>-version 3.23 on MMM DD, YYYY
<p>-version 3.23 on June 21, 2018

<ul>
<li>Fix leaking file handlers in ClassPool and removed ClassPath.close(). Github issue #165.

+ 1
- 1
build.xml View File

@@ -6,7 +6,7 @@

<project name="javassist" default="jar" basedir=".">

<property name="dist-version" value="javassist-3.22.0-GA"/>
<property name="dist-version" value="javassist-3.23.0-GA"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 1
- 1
pom.xml View File

@@ -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.22.0-GA</version>
<version>3.23.0-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>


+ 1
- 1
src/main/META-INF/MANIFEST.MF View File

@@ -1,4 +1,4 @@
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.22.0-GA
Specification-Version: 3.23.0-GA
Main-Class: javassist.CtClass

+ 2
- 2
src/main/javassist/CtClass.java View File

@@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.22.0-GA";
public static final String version = "3.23.0-GA";

/**
* Prints the version number and the copyright notice.
@@ -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-2017 Shigeru Chiba."
System.out.println("Copyright (C) 1999-2018 Shigeru Chiba."
+ " All Rights Reserved.");
}


+ 4
- 4
src/main/javassist/util/proxy/DefinePackageHelper.java View File

@@ -154,10 +154,10 @@ public class DefinePackageHelper
*
* @param loader the class loader passed to <code>toClass()</code> or
* the default one obtained by <code>getClassLoader()</code>.
* @param name the package name.
* @see #getClassLoader()
* @see #toClass(CtClass)
* @see CtClass#toClass() */
* @param className the package name.
* @see Class#getClassLoader()
* @see CtClass#toClass()
*/
public static void definePackage(String className, ClassLoader loader)
throws CannotCompileException
{

Loading…
Cancel
Save