Skip to content

Commit

Permalink
Fix typos in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Oct 21, 2024
1 parent d41e57b commit 85f63cc
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 @@ -222,13 +222,13 @@ public void dropCollection( Context context, AllocationCollection allocation ) {
@Override
public void renameLogicalColumn( long id, String newColumnName ) {
// TODO: Ask David: Why is this part of this interface?
log.debug( "NOT SUPPORTED: JSON source does not support method logicalColumn()" );
log.debug( "NOT SUPPORTED: JSON source does not support method renameLogicalColumn()" );
}


@Override
public void truncate( Context context, long allocId ) {
log.debug( "NOT SUPPORTED: JSON source does not support method commit()." );
log.debug( "NOT SUPPORTED: JSON source does not support method truncate()." );
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,13 @@ public void dropCollection( Context context, AllocationCollection allocation ) {
@Override
public void renameLogicalColumn( long id, String newColumnName ) {
// TODO: Ask David: Why is this part of this interface?
log.debug( "NOT SUPPORTED: XML source does not support method logicalColumn()" );
log.debug( "NOT SUPPORTED: XML source does not support method renameLogicalColumn()" );
}


@Override
public void truncate( Context context, long allocId ) {
log.debug( "NOT SUPPORTED: XML source does not support method commit()." );
log.debug( "NOT SUPPORTED: XML source does not support method truncate()." );
}


Expand Down

0 comments on commit 85f63cc

Please sign in to comment.