Dead Function

Functions that are never called should be deleted; they're the equivalent of commented out code. Again, source control can always be used to restore if necessary.

// this code used to be called earlier but
// changes have been made elsehwere and now
// this code isn't used and is extra bloat
void usedEarlierButNotNow() {
...
}



bj 2019-09-22