Skip to content

Commit

Permalink
Merge pull request #34 from eyasuyuki/hotfix/33
Browse files Browse the repository at this point in the history
ref #33 java.lang.NoSuchMethodError in JsonContext
  • Loading branch information
slavaschmidt authored Oct 19, 2016
2 parents 388992c + 25d47d5 commit 84d91ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ trait StrictParser {
* @param contents
* @param factory
*/
class TransientJsonContext(file: File, contents: String, factory: ObjectMapperFactory) extends JsonContext(file, 0) {
class TransientJsonContext(file: File, contents: String, factory: ObjectMapperFactory) extends JsonContext(file) {
setUrl(file.toURI.toURL)
private val rootNode = factory.create(getUrl).readTree(contents)
setNode(rootNode)
Expand Down

0 comments on commit 84d91ae

Please sign in to comment.