Skip to content

Commit

Permalink
Don't restrict classname-re to inner classes
Browse files Browse the repository at this point in the history
This is required to set breakpoints in Java Source files when the
line breakpoint is located in the top-level class.
  • Loading branch information
juergenhoetzel committed Jun 21, 2013
1 parent da43bd5 commit 74d87ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debugger/src/ritz/jpda/jdi.clj
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
"Return a regular expression pattern for matching all classes in the
given namespace name"
[ns]
(re-pattern (str (string/replace ns "-" "_") "\\$")))
(re-pattern (string/replace ns "-" "_")))

(defn namespace-classes
"Return all classes for the given namespace"
Expand Down

0 comments on commit 74d87ef

Please sign in to comment.