Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7b61c28

Browse filesBrowse files
author
Lars Wander
committed
Fix javadocs
1 parent 6449a82 commit 7b61c28
Copy full SHA for 7b61c28

File tree

Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: util/src/main/java/io/kubernetes/client/Exec.java
+1-1Lines 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);
Collapse file

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

Copy file name to clipboardExpand all lines: util/src/main/java/io/kubernetes/client/ProtoClient.java
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.