이클립스에서 오류가 뜨는데, 왜 오류가 뜨는지 모르겠습니다.

해결방법좀 찾아주시면 안됩니까?

빨간글자 부분이 오류 부분입니다.


------------------------------------------------------------------

  private void showUserInfo()
  {
    EditText localEditText1 = (EditText)findViewById(R.id.Settings_Password);
    EditText localEditText2 = (EditText)findViewById(R.id.Settings_Password2);
    localEditText1.setText(this.pass);
    localEditText2.setText("");
  }


  public void onClick(View paramView)
  {
    InputMethodManager localInputMethodManager = (InputMethodManager)getSystemService("input_method");
    switch (paramView.getId())
    {
    default:
    case R.id.Settings_Save:
    case R.id.Settings_OK:
    case R.id.Settings_Cancel:
    }
    do
    {
      do
      {
        return;
        localInputMethodManager.hideSoftInputFromWindow(paramView.getWindowToken(), 2);
        EditText localEditText1 = (EditText)findViewById(R.id.Settings_Password);
        EditText localEditText2 = (EditText)findViewById(R.id.Settings_Password2);
        String str1 = localEditText1.getText().toString();
        String str2 = localEditText2.getText().toString();
        if (this.hasPass == 1)
        {
          if (str1.length() == 0)
          {
            Toast.makeText(this, "비밀번호를 입력해 주세요.", 0).show();
            return;
          }
          if (str2.length() == 0)
          {
            Toast.makeText(this, "비밀번호 확인을 입력해 주세요.", 0).show();
            return;
          }
          if (!str1.equals(str2))
          {
            Toast.makeText(this, "두개의 비빌번호에 동일한 값을 입력해 주세요.", 0).show();
            return;
          }
        }
        if (this.hasPass == 1)
          Toast.makeText(this, "잠금 설정이 완료 되었습니다.", 0).show();
        while (true)
        {
          this.pass = str1;
          saveToDB();
          finish();
          return;
          Toast.makeText(this, "잠금 설정이 해제 되었습니다.", 0).show();
        }
      }
      while (this.hasPass == 1);
      this.hasPass = 1;
      showButtonType();
      return;
    }
    while (this.hasPass == 0);
    this.hasPass = 0;
    showButtonType();
  }


------------------------------------------------------------