Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 289 Bytes

CallSuperLast.md

File metadata and controls

16 lines (13 loc) · 289 Bytes

CallSuperLast

Category: pmd
Rule Key: pmd:CallSuperLast


Super should be called at the end of the method. Example :

public class DummyActivity extends Activity {
  public void onPause() {
    foo();
    // missing call to super.onPause()
  }
}