Skip to content

Commit 7fec211

Browse files
committed
fix comments in SqlRunner.java
1 parent 2aaac21 commit 7fec211

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/org/apache/ibatis/jdbc/SqlRunner.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void setUseGeneratedKeySupport(boolean useGeneratedKeySupport) {
5252
this.useGeneratedKeySupport = useGeneratedKeySupport;
5353
}
5454

55-
/*
55+
/**
5656
* Executes a SELECT statement that returns one row.
5757
*
5858
* @param sql The SQL
@@ -68,7 +68,7 @@ public Map<String, Object> selectOne(String sql, Object... args) throws SQLExcep
6868
return results.get(0);
6969
}
7070

71-
/*
71+
/**
7272
* Executes a SELECT statement that returns multiple rows.
7373
*
7474
* @param sql The SQL
@@ -91,7 +91,7 @@ public List<Map<String, Object>> selectAll(String sql, Object... args) throws SQ
9191
}
9292
}
9393

94-
/*
94+
/**
9595
* Executes an INSERT statement.
9696
*
9797
* @param sql The SQL
@@ -137,7 +137,7 @@ public int insert(String sql, Object... args) throws SQLException {
137137
}
138138
}
139139

140-
/*
140+
/**
141141
* Executes an UPDATE statement.
142142
*
143143
* @param sql The SQL
@@ -159,7 +159,7 @@ public int update(String sql, Object... args) throws SQLException {
159159
}
160160
}
161161

162-
/*
162+
/**
163163
* Executes a DELETE statement.
164164
*
165165
* @param sql The SQL
@@ -171,7 +171,7 @@ public int delete(String sql, Object... args) throws SQLException {
171171
return update(sql, args);
172172
}
173173

174-
/*
174+
/**
175175
* Executes any string as a JDBC Statement.
176176
* Good for DDL
177177
*

0 commit comments

Comments
 (0)