Skip to content

Commit

Permalink
Make TraceRecord@store field public accessible [ci fast]
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Sep 10, 2023
1 parent c1cc60d commit 07582f0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,11 @@ class TraceRecord implements Serializable {
}
}


@PackageScope
Map<String,Object> store

Map<String,Object> getStore() { store }

@Memoized
Set<String> keySet() {
FIELDS.keySet()
Expand Down Expand Up @@ -401,7 +402,7 @@ class TraceRecord implements Serializable {
}

String toString() {
"${this.class.simpleName} ${store}"
"${this.class.simpleName} ${this.store}"
}


Expand Down

0 comments on commit 07582f0

Please sign in to comment.