1 parent 4d28828 commit c51c2b2Copy full SHA for c51c2b2
2 files changed
google-auth-library-java/oauth2_http/java/com/google/auth/oauth2/MemoryTokensStorage.java
@@ -35,7 +35,6 @@
35
import java.util.HashMap;
36
import java.util.Map;
37
import org.jspecify.annotations.NullMarked;
38
-import org.jspecify.annotations.Nullable;
39
40
/** Represents an in-memory storage of tokens. */
41
@NullMarked
google-auth-library-java/oauth2_http/java/com/google/auth/oauth2/TokenStore.java
@@ -46,8 +46,7 @@ public interface TokenStore {
46
* @return The loaded token data.
47
* @throws IOException An error loading the token data from storage.
48
*/
49
- @Nullable
50
- String load(String id) throws IOException;
+ @Nullable String load(String id) throws IOException;
51
52
/**
53
* Put the token data into storage for the given ID.
0 commit comments