OSDN Git Service

変数名修正
authorsyo68k <syo68k@users.sourceforge.jp>
Fri, 10 Dec 2010 17:42:25 +0000 (17:42 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:17:08 +0000 (23:17 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@1200 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Connection/HttpConnectionOAuth.vb

index a4ddda3..eaa082f 100644 (file)
@@ -335,10 +335,10 @@ Public Class HttpConnectionOAuth
         AppendOAuthInfo(webReq, query, requestToken, "")
         'HTTP応答取得
         Dim header As New Dictionary(Of String, String) From {{"Date", ""}}
-        Dim responceCode As HttpStatusCode = GetResponse(webReq, content, header, False)
-        If responceCode = HttpStatusCode.OK Then Return responceCode
+        Dim responseCode As HttpStatusCode = GetResponse(webReq, content, header, False)
+        If responseCode = HttpStatusCode.OK Then Return responseCode
         If Not String.IsNullOrEmpty(header("Date")) Then content += Environment.NewLine + "Check the Date & Time of this computer." + Environment.NewLine + "Server:" + CDate(header("Date")).ToString + "  PC:" + Now.ToString
-        Return responceCode
+        Return responseCode
     End Function
 #End Region