@@ -495,7 +495,7 @@ public void setDefaultScriptingLanguageDriver(Class<? extends LanguageDriver> de
495
495
*
496
496
* @see #setMapperLocations(Resource...)
497
497
*
498
- * @since 3.0.2
498
+ * @since 2.1.1
499
499
*/
500
500
public void addMapperLocations (Resource ... mapperLocations ) {
501
501
setMapperLocations (appendArrays (this .mapperLocations , mapperLocations , Resource []::new ));
@@ -507,7 +507,7 @@ public void addMapperLocations(Resource... mapperLocations) {
507
507
* @param typeHandlers
508
508
* Type handler list
509
509
*
510
- * @since 3.0.2
510
+ * @since 2.1.1
511
511
*/
512
512
public void addTypeHandlers (TypeHandler <?>... typeHandlers ) {
513
513
setTypeHandlers (appendArrays (this .typeHandlers , typeHandlers , TypeHandler []::new ));
@@ -519,7 +519,7 @@ public void addTypeHandlers(TypeHandler<?>... typeHandlers) {
519
519
* @param scriptingLanguageDrivers
520
520
* scripting language drivers
521
521
*
522
- * @since 3.0.2
522
+ * @since 2.1.1
523
523
*/
524
524
public void addScriptingLanguageDrivers (LanguageDriver ... scriptingLanguageDrivers ) {
525
525
setScriptingLanguageDrivers (
@@ -532,7 +532,7 @@ public void addScriptingLanguageDrivers(LanguageDriver... scriptingLanguageDrive
532
532
* @param plugins
533
533
* list of plugins
534
534
*
535
- * @since 3.0.2
535
+ * @since 2.1.1
536
536
*/
537
537
public void addPlugins (Interceptor ... plugins ) {
538
538
setPlugins (appendArrays (this .plugins , plugins , Interceptor []::new ));
@@ -544,7 +544,7 @@ public void addPlugins(Interceptor... plugins) {
544
544
* @param typeAliases
545
545
* Type aliases list
546
546
*
547
- * @since 3.0.2
547
+ * @since 2.1.1
548
548
*/
549
549
public void addTypeAliases (Class <?>... typeAliases ) {
550
550
setTypeAliases (appendArrays (this .typeAliases , typeAliases , Class []::new ));
0 commit comments