Skip to content

Commit a968a3f

Browse files
committed
Remove the final modifier.
It is necessary to execute hot replacement of SQL files in the quarkus extension.
1 parent 1e49fef commit a968a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSqlFileRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected final SqlNode parse(String sql) {
109109
* @param path the SQL file path
110110
* @return the SQL string
111111
*/
112-
protected final String getSql(String path) {
112+
protected String getSql(String path) {
113113
try {
114114
return ResourceUtil.getResourceAsString(path);
115115
} catch (WrapException e) {

0 commit comments

Comments
 (0)