Skip to content

Commit 246c59e

Browse files
author
Jareth Hein
committed
Remove dead code changed by last patch
1 parent 5dcac93 commit 246c59e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Intuit.QuickBase.Core/Payload/AuthenticatePayload.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,11 @@ private int Hours
6464

6565
internal override string GetXmlPayload()
6666
{
67-
#if FALSE
68-
var sb = new StringBuilder();
69-
sb.Append(String.Format("<username>{0}</username><password>{1}</password>",
70-
Username, Password));
71-
sb.Append(Hours > 0 ? String.Format("<hours>{0}</hours>", Hours) : String.Empty);
72-
return sb.ToString();
73-
#else
7467
var sb = new StringBuilder();
7568
sb.Append(new XElement("username", Username));
7669
sb.Append(new XElement("password", Password));
7770
if (Hours > 0) sb.Append(new XElement("hours", Hours));
7871
return sb.ToString();
79-
#endif
8072
}
8173
}
8274
}

0 commit comments

Comments
 (0)