Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
cfparser 2.5.5 fixes NPE in parsing
  • Loading branch information
ryaneberly committed Aug 19, 2017
1 parent 51b56b5 commit 7bd7c12
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ repositories {
maven { url "http://cfmlprojects.org/artifacts" }
}
dependencies {
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.5.4'
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.5.5'
compile group: 'commons-cli', name: 'commons-cli', version:'1.2'
compile group: 'ro.fortsoft.pf4j', name: 'pf4j', version:'0.6'
compile group: 'ant', name: 'ant', version:'1.7.0'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>

<cfparser.version>2.5.4</cfparser.version>
<cfparser.version>2.5.5</cfparser.version>
<jackson.version>2.8.6</jackson.version>
<slf4j.version>1.7.21</slf4j.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
component {
private any function call( required string url ){
var service = new http(
url = arguments.url
, method = "GET"
, charset = "utf-8"
, timeout = variables.config.timeout
, throwonerror = "false"
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version" : "",
"timestamp" : 1503020142,
"issues" : [ ],
"counts" : {
"totalFiles" : 0,
"totalLines" : 0,
"countByCode" : [ ],
"countBySeverity" : [ ]
}
}

0 comments on commit 7bd7c12

Please sign in to comment.