make some fields protected

This commit is contained in:
Doug MacEachern 2004-11-10 23:23:27 +00:00
parent 4e8a5f0c19
commit 0e3be6714e
1 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,9 @@ public class ProcCpu extends ProcTime {
private static ProcCpu key = new ProcCpu();
private static Map ptable = new HashMap();
private long lastTime = 0;
private long pid;
private double percent = 0.0;
protected long lastTime = 0;
protected double percent = 0.0;
protected long pid;
private void getValues(Sigar sigar, long pid)
throws SigarException {