removing Override annotations
This commit is contained in:
parent
6d4ff51b9c
commit
706f352e56
|
@ -16,9 +16,6 @@
|
||||||
|
|
||||||
package org.hyperic.sigar;
|
package org.hyperic.sigar;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import org.hyperic.sigar.ptql.ProcessFinder;
|
import org.hyperic.sigar.ptql.ProcessFinder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -63,7 +60,6 @@ public class MultiProcCpu extends ProcCpu {
|
||||||
/**
|
/**
|
||||||
* @return Processes CPU usage percentage.
|
* @return Processes CPU usage percentage.
|
||||||
*/
|
*/
|
||||||
@Override
|
|
||||||
public double getPercent() {
|
public double getPercent() {
|
||||||
return this.percent;
|
return this.percent;
|
||||||
}
|
}
|
||||||
|
@ -78,12 +74,10 @@ public class MultiProcCpu extends ProcCpu {
|
||||||
/**
|
/**
|
||||||
* @return Pid of the process.
|
* @return Pid of the process.
|
||||||
*/
|
*/
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return (int)this.pid;
|
return (int)this.pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object cpu) {
|
public boolean equals(Object cpu) {
|
||||||
if (!(cpu instanceof MultiProcCpu)) {
|
if (!(cpu instanceof MultiProcCpu)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue