Skip to content

Commit

Permalink
Merge pull request #2012 from newrelic/correct-deps
Browse files Browse the repository at this point in the history
Correct incorrect imports
jtduffy authored Aug 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 0c73dac + abcc60c commit 41f8d7c
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -24,13 +24,13 @@
import com.newrelic.agent.instrumentation.tracing.TraceDetails;
import com.newrelic.agent.instrumentation.tracing.TraceDetailsBuilder;
import com.newrelic.agent.instrumentation.weaver.ClassLoaderClassTransformer;
import com.newrelic.agent.security.deps.org.apache.commons.lang3.StringUtils;
import com.newrelic.agent.service.AbstractService;
import com.newrelic.agent.service.ServiceFactory;
import com.newrelic.agent.util.DefaultThreadFactory;
import com.newrelic.agent.util.asm.Utils;
import com.newrelic.api.agent.NewRelic;
import com.newrelic.api.agent.security.schema.SecurityMetaData;
import org.apache.commons.lang3.StringUtils;
import org.objectweb.asm.commons.Method;

import java.lang.instrument.ClassFileTransformer;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.newrelic.agent.config;

import com.newrelic.agent.security.deps.org.junit.Assert;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

0 comments on commit 41f8d7c

Please sign in to comment.