Skip to content

Commit

Permalink
updates Readme.html
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Oct 11, 2019
1 parent a54eae5 commit 5a796e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Readme.html
Expand Up @@ -281,6 +281,11 @@ <h2>Hints</h2>

<h2>Changes</h2>

<p>-version 3.27
<ul>
<li>GitHub Issue #271 (PR #279).
</ul>

<p>-version 3.26 on October 3, 2019
<ul>
<li>GitHub Issue #270 (PR #272), #265 (PR #267), #271, #222, and #275.
Expand Down
Binary file modified javassist.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/javassist/ClassPoolTail.java
Expand Up @@ -136,7 +136,7 @@ final class JarClassPath implements ClassPath {
try {
jarfile = new JarFile(pathname);
jarfileEntries = new HashSet<String>();
for (JarEntry je:Collections.list(jarfile.entries()))
for (JarEntry je: Collections.list(jarfile.entries()))
if (je.getName().endsWith(".class"))
jarfileEntries.add(je.getName());
jarfileURL = new File(pathname).getCanonicalFile()
Expand Down

0 comments on commit 5a796e1

Please sign in to comment.