Skip to content

Commit

Permalink
Use typeHandler instead of tagHandler in AbstractEngineConfigurator
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Jan 2, 2024
1 parent 07b7496 commit edcd884
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void configure(TypeAliasRegistry typeAliasRegistry) {

}

NodeList typeHandlerList = document.getElementsByTagName("tagHandler");
NodeList typeHandlerList = document.getElementsByTagName("typeHandler");
for (int i = 0; i < typeHandlerList.getLength(); i++) {
Node node = typeHandlerList.item(i);
MybatisTypeHandlerConfigurator typeHandler = new MybatisTypeHandlerConfigurator() {
Expand Down

0 comments on commit edcd884

Please sign in to comment.