Skip to content

Commit

Permalink
Fix typo in json property in ThreadResource
Browse files Browse the repository at this point in the history
  • Loading branch information
miniway authored and findepi committed Oct 30, 2018
1 parent c178355 commit 81f0a55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public Info(
@JsonProperty("id") long id,
@JsonProperty("name") String name,
@JsonProperty("state") String state,
@JsonProperty("lockOwner") Long lockOwnerId,
@JsonProperty("lockOwnerId") Long lockOwnerId,
@JsonProperty("stackTrace") List<StackLine> stackTrace)
{
this.id = id;
Expand Down Expand Up @@ -158,7 +158,7 @@ public static class StackLine
public StackLine(
@JsonProperty("file") String file,
@JsonProperty("line") int line,
@JsonProperty("class") String className,
@JsonProperty("className") String className,
@JsonProperty("method") String method)
{
this.file = file;
Expand Down

0 comments on commit 81f0a55

Please sign in to comment.