Skip to content

Commit

Permalink
0001382: Bad external_data: The bean shell router should unbind exter…
Browse files Browse the repository at this point in the history
…nal data if it is void because the interpreter is reused
  • Loading branch information
chenson42 committed Aug 14, 2013
1 parent c1b7e5f commit 4a2549b
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -161,6 +161,8 @@ protected Map<String, Object> getDataObjectMap(DataMetaData dataMetaData,
data = new HashMap<String, Object>(1);
}
data.put("EXTERNAL_DATA", dataMetaData.getData().getExternalData());
} else if (data != null) {
data.put("EXTERNAL_DATA", null);
}
return data;
}
Expand Down

0 comments on commit 4a2549b

Please sign in to comment.