>From 9a637a2d6680e8d4cc078fe0b60e69e64df1eec6 Mon Sep 17 00:00:00 2001
From: Olof-Joachim Frahm <olof@macrolet.net>
Date: Wed, 18 Nov 2015 11:32:44 +0100
Subject: [PATCH 1/5] Fix nested classes from JARs not visible with JSS.

---
 contrib/jss/invoke.lisp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/jss/invoke.lisp b/contrib/jss/invoke.lisp
index 150d7bc..e8b301b 100644
--- a/contrib/jss/invoke.lisp
+++ b/contrib/jss/invoke.lisp
@@ -286,7 +286,7 @@ (defun get-all-jar-classnames (jar-file-name)
                               (group "group"))
       (loop while (hasmore entries)
          for name =  (getname (next entries))
-         with class-pattern = (#"compile" '|java.util.regex.Pattern| "[^$]*\\.class$")
+         with class-pattern = (#"compile" '|java.util.regex.Pattern| ".*\\.class$")
          with name-pattern = (#"compile" '|java.util.regex.Pattern| ".*?([^.]*)$")
          when (matches (matcher class-pattern name))
          collect
-- 
2.8.1

