Skip to content

Commit a09c18f

Browse files
Remove unused variables
1 parent 88058f7 commit a09c18f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/JWTSimpleServer/JwtSimpleServerOptions.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ public class JwtSimpleServerOptions
1111
public string Issuer { get; set; } = Constants.DefaultIssuer;
1212
public string IssuerSigningKey { get; set; }
1313
public Func<DateTime> NotBefore = () => DateTime.UtcNow;
14-
public Func<DateTime> Expires = () => DateTime.UtcNow.AddMinutes(15);
15-
public void UseRefreshToken() => _UseRefreshToken = true;
16-
17-
private bool _UseRefreshToken = false;
14+
public Func<DateTime> Expires = () => DateTime.UtcNow.AddMinutes(15);
1815
}
1916
}

0 commit comments

Comments
 (0)