From b0dbe7bcaebd1984745c960f85d48ab2aa33e4ed Mon Sep 17 00:00:00 2001 From: Chisu Yu Date: Wed, 31 Jul 2013 23:46:25 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9C=A0=EC=B9=98=EC=88=98]=20[NOBTS]=20test.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@2055 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../modifier/db/cubrid/CubridStatementModifier.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/nhn/pinpoint/profiler/modifier/db/cubrid/CubridStatementModifier.java b/src/main/java/com/nhn/pinpoint/profiler/modifier/db/cubrid/CubridStatementModifier.java index 066f054b1..88f7cfc74 100644 --- a/src/main/java/com/nhn/pinpoint/profiler/modifier/db/cubrid/CubridStatementModifier.java +++ b/src/main/java/com/nhn/pinpoint/profiler/modifier/db/cubrid/CubridStatementModifier.java @@ -35,14 +35,14 @@ public class CubridStatementModifier extends AbstractModifier { statementClass.addInterceptor("executeQuery", new String[] { "java.lang.String" }, new StatementExecuteQueryInterceptor()); // TODO 이거 고쳐야 됨. - Interceptor executeUpdate1 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); - statementClass.addInterceptor("executeUpdate", new String[] { "java.lang.String" }, executeUpdate1); + // Interceptor executeUpdate1 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); + // statementClass.addInterceptor("executeUpdate", new String[] { "java.lang.String" }, executeUpdate1); Interceptor executeUpdate2 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); statementClass.addInterceptor("executeUpdate", new String[] { "java.lang.String", "int" }, executeUpdate2); - Interceptor executeUpdate3 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); - statementClass.addInterceptor("execute", new String[] { "java.lang.String" }, executeUpdate3); + // Interceptor executeUpdate3 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); + // statementClass.addInterceptor("execute", new String[] { "java.lang.String" }, executeUpdate3); Interceptor executeUpdate4 = byteCodeInstrumentor.newInterceptor(classLoader, protectedDomain, "com.nhn.pinpoint.profiler.modifier.db.interceptor.StatementExecuteUpdateInterceptor"); statementClass.addInterceptor("execute", new String[] { "java.lang.String", "int" }, executeUpdate4);