File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
src/main/java/org/apache/ibatis Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2323import org .apache .ibatis .builder .BuilderException ;
2424import org .apache .ibatis .mapping .BoundSql ;
2525import org .apache .ibatis .mapping .SqlSource ;
26- import org .apache .ibatis .parsing .PropertyParser ;
2726import org .apache .ibatis .reflection .ParamNameResolver ;
2827import org .apache .ibatis .scripting .LanguageDriver ;
2928import org .apache .ibatis .session .Configuration ;
@@ -169,8 +168,4 @@ private String invokeProviderMethod(Object... args) throws Exception {
169168 return sql != null ? sql .toString () : null ;
170169 }
171170
172- private String replacePlaceholder (String sql ) {
173- return PropertyParser .parse (sql , configuration .getVariables ());
174- }
175-
176171}
Original file line number Diff line number Diff line change @@ -536,6 +536,9 @@ public LanguageDriver getDefaultScriptingLanguageInstance() {
536536 return languageRegistry .getDefaultDriver ();
537537 }
538538
539+ /**
540+ * @since 3.5.1
541+ */
539542 public LanguageDriver getLanguageDriver (Class <? extends LanguageDriver > langClass ) {
540543 if (langClass == null ) {
541544 return languageRegistry .getDefaultDriver ();
You can’t perform that action at this time.
0 commit comments