Skip to content

Commit

Permalink
Merge pull request #7 from gregordickie/master
Browse files Browse the repository at this point in the history
JENKINS-20359: Initialize results properly to get content inspection to ...
  • Loading branch information
gboissinot committed Dec 14, 2013
2 parents cfaaaaf + 485d4c3 commit 6e416e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -18,7 +18,7 @@
*/
public class JSONContentType extends URLTriggerContentType {

private transient Map<String, Object> results = new HashMap<String, Object>();
private transient Map<String, Object> results = null;

private List<JSONContentEntry> jsonPaths = new ArrayList<JSONContentEntry>();

Expand Down
Expand Up @@ -26,7 +26,7 @@
*/
public class XMLContentType extends URLTriggerContentType {

private transient Map<String, Object> results = new HashMap<String, Object>();
private transient Map<String, Object> results = null;

private transient Document xmlDocument;

Expand Down

0 comments on commit 6e416e7

Please sign in to comment.