395396397398399400401402403404405
/** {@inheritDoc} */ public boolean performsSubstitution() { if ( metric instanceof Substitutable ) { Substitutable s = (Substitutable) metric; return s.performsSubstitution(); } else { return false; } }