You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2019/05/20 13:54:13 UTC

[skywalking] branch master updated: Remove the ex which not thrown. & Remove unused logger. (#2710)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ebbe7c  Remove the ex which not thrown. & Remove unused logger. (#2710)
3ebbe7c is described below

commit 3ebbe7c29932648ac530772d2f1eeccc133efe7b
Author: Alan Lau <li...@cmss.chinamobile.com>
AuthorDate: Mon May 20 21:54:05 2019 +0800

    Remove the ex which not thrown. & Remove unused logger. (#2710)
---
 .../apm/agent/core/plugin/loader/InterceptorInstanceLoader.java    | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/loader/InterceptorInstanceLoader.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/loader/InterceptorInstanceLoader.java
index df7f925..e1bdb39 100644
--- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/loader/InterceptorInstanceLoader.java
+++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/loader/InterceptorInstanceLoader.java
@@ -20,10 +20,7 @@
 package org.apache.skywalking.apm.agent.core.plugin.loader;
 
 import org.apache.skywalking.apm.agent.core.boot.AgentPackageNotFoundException;
-import org.apache.skywalking.apm.agent.core.logging.api.ILog;
-import org.apache.skywalking.apm.agent.core.logging.api.LogManager;
 
-import java.lang.reflect.InvocationTargetException;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
@@ -38,7 +35,6 @@ import java.util.concurrent.locks.ReentrantLock;
  * Created by wusheng on 16/8/2.
  */
 public class InterceptorInstanceLoader {
-    private static final ILog logger = LogManager.getLogger(InterceptorInstanceLoader.class);
 
     private static ConcurrentHashMap<String, Object> INSTANCE_CACHE = new ConcurrentHashMap<String, Object>();
     private static ReentrantLock INSTANCE_LOAD_LOCK = new ReentrantLock();
@@ -53,14 +49,13 @@ public class InterceptorInstanceLoader {
      * @param targetClassLoader the class loader for current application context
      * @param <T>               expected type
      * @return the type reference.
-     * @throws InvocationTargetException
      * @throws IllegalAccessException
      * @throws InstantiationException
      * @throws ClassNotFoundException
      * @throws AgentPackageNotFoundException
      */
     public static <T> T load(String className, ClassLoader targetClassLoader)
-            throws InvocationTargetException, IllegalAccessException, InstantiationException, ClassNotFoundException, AgentPackageNotFoundException {
+            throws IllegalAccessException, InstantiationException, ClassNotFoundException, AgentPackageNotFoundException {
         if (targetClassLoader == null) {
             targetClassLoader = InterceptorInstanceLoader.class.getClassLoader();
         }