Skip to content

Commit

Permalink
fix name of ResultSetMappingSecondPass
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking committed Nov 4, 2022
1 parent a39fcf7 commit 7593d58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ public static void bindSqlResultSetMappings(

for (SqlResultSetMapping rs : ann.value()) {
//no need to handle inSecondPass
context.getMetadataCollector().addSecondPass( new ResultsetMappingSecondPass( rs, context, true ) );
context.getMetadataCollector().addSecondPass( new ResultSetMappingSecondPass( rs, context, true ) );
}
}

Expand All @@ -458,7 +458,7 @@ public static void bindSqlResultSetMapping(
MetadataBuildingContext context,
boolean isDefault) {
//no need to handle inSecondPass
context.getMetadataCollector().addSecondPass( new ResultsetMappingSecondPass( ann, context, isDefault ) );
context.getMetadataCollector().addSecondPass( new ResultSetMappingSecondPass( ann, context, isDefault ) );
}

public static String parseJdbcCall(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
/**
* @author Emmanuel Bernard
*/
public class ResultsetMappingSecondPass implements QuerySecondPass {
public class ResultSetMappingSecondPass implements QuerySecondPass {
// private static final CoreMessageLogger LOG = CoreLogging.messageLogger( ResultsetMappingSecondPass.class );

private final SqlResultSetMapping ann;
private final MetadataBuildingContext context;
private final boolean isDefault;

public ResultsetMappingSecondPass(SqlResultSetMapping ann, MetadataBuildingContext context, boolean isDefault) {
public ResultSetMappingSecondPass(SqlResultSetMapping ann, MetadataBuildingContext context, boolean isDefault) {
this.ann = ann;
this.context = context;
this.isDefault = isDefault;
Expand Down

0 comments on commit 7593d58

Please sign in to comment.