Skip to content

Commit

Permalink
refactor: 移除多余代码
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamroute committed Dec 10, 2019
1 parent 272648f commit 0c29175
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.dreamroute</groupId>
<artifactId>locker</artifactId>
<version>2.3-RELEASE</version>
<version>2.4-RELEASE</version>
<packaging>jar</packaging>

<name>locker</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ public Object intercept(Invocation invocation) throws Exception {
SqlCommandType sct = ms.getSqlCommandType();
if (sct.equals(SqlCommandType.UPDATE)) {
int result = (int) invocation.proceed();
ms.getParameterMap();
Object param = invocation.getArgs()[1];
BoundSql boundSql = ms.getBoundSql(param);
String sql = boundSql.getSql();
Expand Down

0 comments on commit 0c29175

Please sign in to comment.