@@ -72,9 +72,9 @@ public static ClientId of(String clientId, String clientSecret) {
7272 /**
7373 * Constructs a Client ID from JSON from a downloaded file.
7474 *
75- * @param json The JSON from the downloaded file.
76- * @return the ClientId instance based on the JSON.
77- * @throws IOException The JSON could not be parsed.
75+ * @param json the JSON from the downloaded file
76+ * @return the ClientId instance based on the JSON
77+ * @throws IOException the JSON could not be parsed
7878 */
7979 public static ClientId fromJson (Map <String , Object > json ) throws IOException {
8080 Object rawDetail = null ;
@@ -105,9 +105,9 @@ public static ClientId fromJson(Map<String, Object> json) throws IOException {
105105 /**
106106 * Constructs a Client ID from JSON file stored as a resource.
107107 *
108- * @param relativeClass A class in the same namespace as the resource.
109- * @param resourceName The name of the resource
110- * @return The constructed ClientID instance based on the JSON in the resource.
108+ * @param relativeClass a class in the same namespace as the resource
109+ * @param resourceName the name of the resource
110+ * @return the constructed ClientID instance based on the JSON in the resource
111111 * @throws IOException The JSON could not be loaded or parsed.
112112 */
113113 public static ClientId fromResource (Class <?> relativeClass , String resourceName )
@@ -119,9 +119,9 @@ public static ClientId fromResource(Class<?> relativeClass, String resourceName)
119119 /**
120120 * Constructs a Client ID from JSON file stream.
121121 *
122- * @param stream Stream of the downloaded JSON file.
123- * @return The constructed ClientID instance based on the JSON in the stream.
124- * @throws IOException The JSON could not be read or parsed.
122+ * @param stream the downloaded JSON file
123+ * @return the constructed ClientID instance based on the JSON in the stream
124+ * @throws IOException the JSON could not be read or parsed
125125 */
126126 public static ClientId fromStream (InputStream stream ) throws IOException {
127127 Preconditions .checkNotNull (stream );
0 commit comments