GOWSNT - Group Operations With Same Name Together

Enforces standard to improve readability.

Wrong

package audit;
class GOWSNT {
    void operation () {}
    void function () {}
    void operation (int param) {}
}

Tip:

Place operations with similar names and different signatures together.

Right

package audit;
class GOWSNT {
    void operation () {}
    void operation (int param) {}
    void function () {}
}