Changeset 15149


Ignore:
Timestamp:
11/05/19 13:03:40 (4 years ago)
Author:
Mark Evenson
Message:

jss: explicitly scope TO-HASHSET

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/contrib/jss/collections.lisp

    r15146 r15149  
    207207(defun to-hashset (list)
    208208  "Convert LIST to the java.util.HashSet contract"
    209   (let ((set (new 'hashset)))
     209  (let ((set (new 'java.util.hashset)))
    210210    (loop for l in list do (#"add" set l))
    211211    set))
Note: See TracChangeset for help on using the changeset viewer.