Skip to content

Commit

Permalink
chore(jmcagent): correct Event field visibility (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Matsuoka authored Apr 18, 2024
1 parent 25d4dc9 commit 4b467f5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/java/io/cryostat/core/agent/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ public class Event {
private static final String XML_ATTRIBUTE_ID = "id";
private static final String XML_TAG_METHOD_NAME = "name";

private String id;
private String name;
private String clazz;
private String description;
private String path;
private boolean recordStackTrace;
private boolean useRethrow;
private String methodName;
private String methodDescriptor;
private Location location;
private MethodReturnValue returnValue;
public String id;
public String name;
public String clazz;
public String description;
public String path;
public boolean recordStackTrace;
public boolean useRethrow;
public String methodName;
public String methodDescriptor;
public Location location;
public MethodReturnValue returnValue;

private final List<MethodParameter> parameters = new ArrayList<>();
private final List<Field> fields = new ArrayList<>();
Expand Down

0 comments on commit 4b467f5

Please sign in to comment.