Skip to content

Commit ef64bf5

Browse files
committed
remove useless code
1 parent eac11b4 commit ef64bf5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Parse/Internal/Push/Coder/ParsePushEncoder.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
using System;
44
using System.Collections.Generic;
5-
using System.Diagnostics;
65

76
namespace Parse.Internal {
87
internal class ParsePushEncoder {
@@ -38,7 +37,7 @@ public IDictionary<string, object> Encode(IPushState state) {
3837
payload["expiration_interval"] = state.ExpirationInterval.Value.TotalSeconds;
3938
}
4039
if (state.PushTime.HasValue) {
41-
payload["push_time"] = state.PushTime.Value.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ");
40+
payload["push_time"] = state.PushTime.Value.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ");
4241
}
4342

4443
return payload;

0 commit comments

Comments
 (0)