Skip to content

Commit

Permalink
- Upgraded parent project: 9.0.0
Browse files Browse the repository at this point in the history
- Removed workaround for stleary/JSON-java#589 after upgrade of org.everity.json.schema dependency
  • Loading branch information
cdanger committed Nov 2, 2023
1 parent d4f5782 commit b49c49c
Show file tree
Hide file tree
Showing 4 changed files with 185 additions and 311 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.ow2.authzforce</groupId>
<artifactId>authzforce-ce-parent</artifactId>
<version>8.5.0</version>
<version>9.0.0</version>
</parent>
<artifactId>authzforce-ce-xacml-json-model</artifactId>
<packaging>jar</packaging>
Expand Down Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.11</version>
<version>7.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Object nextValue() throws JSONException
this.back();

string = sb.toString().trim();
if ("".equals(string))
if (string.isEmpty())
{
throw this.syntaxError("Missing value");
}
Expand Down
Loading

0 comments on commit b49c49c

Please sign in to comment.