pass-through method termsmell
method that does nothing but call another method
Method A on class X calls method B on class Y, with the same arguments and return type, doing no work of its own. Doubles the API surface for zero added value; adds a layer the reader must traverse without learning anything. Telltale of shallow modules. Sometimes legitimate (interface adapter), often accidental.