Skip to content

Commit 7b61c28

Browse files
author
Lars Wander
committed
Fix javadocs
1 parent 6449a82 commit 7b61c28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

util/src/main/java/io/kubernetes/client/Exec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private String makePath(String namespace, String name, String[] command, String
8282
* @param namespace The namespace of the Pod
8383
* @param name The name of the Pod
8484
* @param command The command to run
85-
* @param stdin If true, pass a stdin stream into the container
85+
* @param stdin If true, pass a stdin stream into the container
8686
*/
8787
public Process exec(String namespace, String name, String[] command, boolean stdin) throws ApiException, IOException {
8888
return exec(namespace, name, command, null, stdin, false);

util/src/main/java/io/kubernetes/client/ProtoClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public <T extends Message> ObjectOrStatus<T> get(T.Builder builder, String path)
103103
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
104104
* @return An ObjectOrStatus which contains the Object requested, or a Status about the request.
105105
*/
106-
public <T extends Message> ObjectOrStatus<T> list(T.Builder listObj, String path) throws ApiException, IOException {
107-
return get(listObj, path);
106+
public <T extends Message> ObjectOrStatus<T> list(T.Builder builder, String path) throws ApiException, IOException {
107+
return get(builder, path);
108108
}
109109

110110
/**

0 commit comments

Comments
 (0)