@@ -495,7 +495,7 @@ public void setDefaultScriptingLanguageDriver(Class<? extends LanguageDriver> de
495495 *
496496 * @see #setMapperLocations(Resource...)
497497 *
498- * @since 3.0.2
498+ * @since 2.1.1
499499 */
500500 public void addMapperLocations (Resource ... mapperLocations ) {
501501 setMapperLocations (appendArrays (this .mapperLocations , mapperLocations , Resource []::new ));
@@ -507,7 +507,7 @@ public void addMapperLocations(Resource... mapperLocations) {
507507 * @param typeHandlers
508508 * Type handler list
509509 *
510- * @since 3.0.2
510+ * @since 2.1.1
511511 */
512512 public void addTypeHandlers (TypeHandler <?>... typeHandlers ) {
513513 setTypeHandlers (appendArrays (this .typeHandlers , typeHandlers , TypeHandler []::new ));
@@ -519,7 +519,7 @@ public void addTypeHandlers(TypeHandler<?>... typeHandlers) {
519519 * @param scriptingLanguageDrivers
520520 * scripting language drivers
521521 *
522- * @since 3.0.2
522+ * @since 2.1.1
523523 */
524524 public void addScriptingLanguageDrivers (LanguageDriver ... scriptingLanguageDrivers ) {
525525 setScriptingLanguageDrivers (
@@ -532,7 +532,7 @@ public void addScriptingLanguageDrivers(LanguageDriver... scriptingLanguageDrive
532532 * @param plugins
533533 * list of plugins
534534 *
535- * @since 3.0.2
535+ * @since 2.1.1
536536 */
537537 public void addPlugins (Interceptor ... plugins ) {
538538 setPlugins (appendArrays (this .plugins , plugins , Interceptor []::new ));
@@ -544,7 +544,7 @@ public void addPlugins(Interceptor... plugins) {
544544 * @param typeAliases
545545 * Type aliases list
546546 *
547- * @since 3.0.2
547+ * @since 2.1.1
548548 */
549549 public void addTypeAliases (Class <?>... typeAliases ) {
550550 setTypeAliases (appendArrays (this .typeAliases , typeAliases , Class []::new ));
0 commit comments