@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
((CustomApplication) getApplication()).detach(this);
}
PMD レポートの生成中に、このError: Super should be called at the end of method が発生しました。通常、親クラスが最初に初期化されて呼び出されるように、最終的にスーパー メソッドを一番上 (最初のステートメント) に保持します。