Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions core/src/main/java/hudson/util/ProcessTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@
* @since 1.315
*/
public abstract class ProcessTree implements Iterable<OSProcess>, IProcessTree, SerializableOnlyOverRemoting {
private static final byte PR_MODEL_ILP32 = 0;
private static final byte PR_MODEL_LP64 = 1;
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assuming its probably wrong and or a test blindspot.

/**
* To be filled in the constructor of the derived type.
*/
Expand Down Expand Up @@ -985,8 +987,6 @@ protected OSProcess createProcess(final int pid) throws IOException {
}

private class AIXProcess extends UnixProcess {
private static final byte PR_MODEL_ILP32 = 0;
private static final byte PR_MODEL_LP64 = 1;

/*
* An arbitrary upper-limit on how many characters readLine() will
Expand Down Expand Up @@ -1311,8 +1311,6 @@ protected OSProcess createProcess(final int pid) throws IOException {
}

private class SolarisProcess extends UnixProcess {
private static final byte PR_MODEL_ILP32 = 1;
private static final byte PR_MODEL_LP64 = 2;

/*
* An arbitrary upper-limit on how many characters readLine() will
Expand Down
Loading