Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
apangin committed Mar 3, 2024
1 parent 3f4b8b3 commit ee03a15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/converter/one/convert/FlameGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ private boolean excludeTrace(String[] trace) {
return true;
}
if (include != null && include.matcher(frame).matches()) {
if (exclude == null) return false;
include = null;
if (exclude == null) break;
}
}

Expand Down
5 changes: 5 additions & 0 deletions src/converter/one/convert/Frame.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright The async-profiler authors
* SPDX-License-Identifier: Apache-2.0
*/

package one.convert;

import java.util.HashMap;
Expand Down

0 comments on commit ee03a15

Please sign in to comment.