mirror of
https://github.com/EsotericSoftware/reflectasm.git
synced 2025-03-23 07:40:16 +08:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
bf1b9ecf6b
@ -24,7 +24,7 @@ To use reflectasm with maven, please use the following snippet in your pom.xml
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.esotericsoftware</groupId>
|
<groupId>com.esotericsoftware</groupId>
|
||||||
<artifactId>reflectasm</artifactId>
|
<artifactId>reflectasm</artifactId>
|
||||||
<version>1.10.0</version>
|
<version>1.10.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ If you already have asm in a different version (than the one pulled in by reflec
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.esotericsoftware</groupId>
|
<groupId>com.esotericsoftware</groupId>
|
||||||
<artifactId>reflectasm</artifactId>
|
<artifactId>reflectasm</artifactId>
|
||||||
<version>1.10.0</version>
|
<version>1.10.1</version>
|
||||||
<classifier>shaded</classifier>
|
<classifier>shaded</classifier>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
|
4
pom.xml
4
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.esotericsoftware</groupId>
|
<groupId>com.esotericsoftware</groupId>
|
||||||
<artifactId>reflectasm</artifactId>
|
<artifactId>reflectasm</artifactId>
|
||||||
<version>1.10.1-SNAPSHOT</version>
|
<version>1.10.2-SNAPSHOT</version>
|
||||||
<packaging>bundle</packaging>
|
<packaging>bundle</packaging>
|
||||||
<name>ReflectASM</name>
|
<name>ReflectASM</name>
|
||||||
<description>High performance Java reflection using code generation</description>
|
<description>High performance Java reflection using code generation</description>
|
||||||
@ -43,7 +43,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ow2.asm</groupId>
|
<groupId>org.ow2.asm</groupId>
|
||||||
<artifactId>asm</artifactId>
|
<artifactId>asm</artifactId>
|
||||||
<version>4.2</version>
|
<version>5.0.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
|
@ -86,7 +86,7 @@ public class ClassLoaderTest extends TestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Yeah, both reclaimed!
|
// Yeah, both reclaimed!
|
||||||
assertEquals(1, AccessClassLoader.activeAccessClassLoaders());
|
assertEquals(Math.min(initialCount, 1), AccessClassLoader.activeAccessClassLoaders());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testRemoveClassloaders () throws Exception {
|
public void testRemoveClassloaders () throws Exception {
|
||||||
|
Loading…
Reference in New Issue
Block a user