File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
msal4j-sdk/src/main/java/com/microsoft/aad/msal4j Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ public final class DeviceCode implements JsonSerializable<DeviceCode> {
2323 private long interval ;
2424 private String message ;
2525
26- private transient String correlationId = null ;
27- private transient String clientId = null ;
28- private transient String scopes = null ;
26+ private String correlationId = null ;
27+ private String clientId = null ;
28+ private String scopes = null ;
2929
3030 public static DeviceCode fromJson (JsonReader jsonReader ) throws IOException {
3131 DeviceCode deviceCode = new DeviceCode ();
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class TokenCache implements ITokenCache {
2323
2424 protected static final int MIN_ACCESS_TOKEN_EXPIRE_IN_SEC = 5 * 60 ;
2525
26- transient private ReadWriteLock lock = new ReentrantReadWriteLock ();
26+ private ReadWriteLock lock = new ReentrantReadWriteLock ();
2727
2828 /**
2929 * Constructor for token cache
@@ -47,9 +47,9 @@ public TokenCache() {
4747 Map <String , AccountCacheEntity > accounts = new LinkedHashMap <>();
4848 Map <String , AppMetadataCacheEntity > appMetadata = new LinkedHashMap <>();
4949
50- transient ITokenCacheAccessAspect tokenCacheAccessAspect ;
50+ ITokenCacheAccessAspect tokenCacheAccessAspect ;
5151
52- private transient String serializedCachedSnapshot ;
52+ private String serializedCachedSnapshot ;
5353
5454 @ Override
5555 public void deserialize (String data ) {
You can’t perform that action at this time.
0 commit comments