Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Make method private
Browse files Browse the repository at this point in the history
Signed-off-by: Pavol Loffay <ploffay@redhat.com>
  • Loading branch information
pavolloffay committed Jul 20, 2018
1 parent e1ef48b commit 7e094ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public JaegerSpan log(long timestampMicroseconds, String event) {
return log(timestampMicroseconds, null, event);
}

public JaegerSpan log(long timestampMicroseconds, Map<String, ?> fields, String event) {
private JaegerSpan log(long timestampMicroseconds, Map<String, ?> fields, String event) {
synchronized (this) {
if (fields == null && event == null) {
return this;
Expand Down

0 comments on commit 7e094ca

Please sign in to comment.