what on earth does that message mean?

Here is the code this seems to be happening to:

class Notifications implements Serializable {
    def context
    def dataBlocks
    def mailLists
    def workspace

    // emailext body: 'my email body', subject: 'email subject', to:
'[email protected]', replyTo: '[email protected]', mimeType: 'text/html';
    Notifications(ctx,workspace){
        context=ctx;
        dataBlocks = new Data(context,workspace)
        mailLists = this.loadJSON('data/email-lists.json')

    }
    def loadJSON(fname){
        def retval
        context.dir(workspace){
            retval = jsonParse(context.readFile(fname))
        }
        return retval
    }
------------8< snip 8<-----------------------------------------

in particular in the loading of the JSON file.

It is laid out as
{
    "list1" :: [
            "member1" ...etc.
     ]
}


thoughts?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAArvnv0QNjMYO2m2n1RNnXzGOK%2BhZ%2BQuATXD8frtDMAwg8tL9A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to