You might try this rather than a core hack.
function my_filter_activity_comment_reply_links( $content ) {
preg_replace( '(<span class="acomment-replylink">).*?(</span>)', '', $content );
return $content;
}
add_filter( 'bp_activity_recurse_comments', 'my_filter_activity_comment_reply_links' );
I have not tested this, but, fingers crossed, it should work.