Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.1.0 (xx/xx/2023)

- **[CHANGE]**: Make agent start method public [#27](https://github.com/intergral/deep/pull/27) [@Umaaz](https://github.com/Umaaz)
- **[CHANGE]**: move api loader to api module [#16](https://github.com/intergral/deep/pull/16) [@Umaaz](https://github.com/Umaaz)
- **[CHANGE]**: include bytebuddy in deep build [#12](https://github.com/intergral/deep/pull/12) [@Umaaz](https://github.com/Umaaz)
- **[CHANGE]**: add issue and PR templates [#14](https://github.com/intergral/deep/pull/14) [@Umaaz](https://github.com/Umaaz)
Expand Down
2 changes: 1 addition & 1 deletion agent/src/main/java/com/intergral/deep/agent/Agent.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static void premain(final String arg, final Instrumentation inst) {
* @param args the NV args
* @param inst a system instrumentation
*/
private static void startNv(final Map<String, String> args, final Instrumentation inst) {
public static void startNv(final Map<String, String> args, final Instrumentation inst) {
try {
final JarFile jarfile;
// this is here, so we can set the path during testing.
Expand Down