@@ -334,7 +334,7 @@ private static DataViewRowCursor ConsolidateCore(IChannelProvider provider, Data
334
334
335
335
int [ ] activeToCol ;
336
336
int [ ] colToActive ;
337
- Utils . BuildSubsetMaps ( schema . Count , schema , cursor . IsColumnActive , out activeToCol , out colToActive ) ;
337
+ Utils . BuildSubsetMaps ( schema , cursor . IsColumnActive , out activeToCol , out colToActive ) ;
338
338
339
339
// Because the schema of the consolidator is not necessary fixed, we are merely
340
340
// opportunistic about buffer sharing, from cursoring to cursoring. If we can do
@@ -517,7 +517,7 @@ private DataViewRowCursor[] SplitCore(IChannelProvider ch, DataViewRowCursor inp
517
517
// Create the mappings between active column index, and column index.
518
518
int [ ] activeToCol ;
519
519
int [ ] colToActive ;
520
- Utils . BuildSubsetMaps ( _schema . Count , _schema , input . IsColumnActive , out activeToCol , out colToActive ) ;
520
+ Utils . BuildSubsetMaps ( _schema , input . IsColumnActive , out activeToCol , out colToActive ) ;
521
521
522
522
Func < DataViewRowCursor , int , InPipe > createFunc = CreateInPipe < int > ;
523
523
var inGenMethod = createFunc . GetMethodInfo ( ) . GetGenericMethodDefinition ( ) ;
@@ -1116,7 +1116,7 @@ public override bool IsColumnActive(DataViewSchema.Column column)
1116
1116
/// This throws if the column is not active in this row, or if the type
1117
1117
/// <typeparamref name="TValue"/> differs from this column's type.
1118
1118
/// </summary>
1119
- /// <typeparam name="TValue"> is the output column's content type.</typeparam>
1119
+ /// <typeparam name="TValue"> is the column's content type.</typeparam>
1120
1120
/// <param name="column"> is the output column whose getter should be returned.</param>
1121
1121
public override ValueGetter < TValue > GetGetter < TValue > ( DataViewSchema . Column column )
1122
1122
{
@@ -1180,7 +1180,7 @@ public SynchronousConsolidatingCursor(IChannelProvider provider, DataViewRowCurs
1180
1180
_cursors = cursors ;
1181
1181
_schema = _cursors [ 0 ] . Schema ;
1182
1182
1183
- Utils . BuildSubsetMaps ( _schema . Count , _schema , _cursors [ 0 ] . IsColumnActive , out _activeToCol , out _colToActive ) ;
1183
+ Utils . BuildSubsetMaps ( _schema , _cursors [ 0 ] . IsColumnActive , out _activeToCol , out _colToActive ) ;
1184
1184
1185
1185
Func < int , Delegate > func = CreateGetter < int > ;
1186
1186
_methInfo = func . GetMethodInfo ( ) . GetGenericMethodDefinition ( ) ;
@@ -1307,7 +1307,7 @@ public override bool IsColumnActive(DataViewSchema.Column column)
1307
1307
/// This throws if the column is not active in this row, or if the type
1308
1308
/// <typeparamref name="TValue"/> differs from this column's type.
1309
1309
/// </summary>
1310
- /// <typeparam name="TValue"> is the output column's content type.</typeparam>
1310
+ /// <typeparam name="TValue"> is the column's content type.</typeparam>
1311
1311
/// <param name="column"> is the output column whose getter should be returned.</param>
1312
1312
public override ValueGetter < TValue > GetGetter < TValue > ( DataViewSchema . Column column )
1313
1313
{
0 commit comments