OSDN Git Service

不要なthrows削除
authoryukihane <yukihane.feather@gmail.com>
Tue, 30 Aug 2011 10:20:47 +0000 (19:20 +0900)
committeryukihane <yukihane.feather@gmail.com>
Tue, 30 Aug 2011 10:20:47 +0000 (19:20 +0900)
src/nicobrowser/NicoHttpClient.java

index 619f41b..4046dbc 100644 (file)
@@ -120,7 +120,7 @@ public class NicoHttpClient {
      * @param password パスワード.
      * @return 認証がOKであればtrue.
      */
-    public boolean login(String mail, String password) throws URISyntaxException, HttpException, InterruptedException {
+    public boolean login(String mail, String password) throws InterruptedException {
         boolean auth = false;
         HttpPost post = new HttpPost(LOGIN_PAGE);