jdk/src/share/classes/sun/jvmstat/perfdata/monitor/PerfIntegerMonitor.java
changeset 25522 10d789df41bb
parent 7668 d4a77089c587
equal deleted inserted replaced
25521:80551dd1d902 25522:10d789df41bb
    65      *
    65      *
    66      * @return Object - the current value of the the IntegerInstrument. The
    66      * @return Object - the current value of the the IntegerInstrument. The
    67      *                   return type is guaranteed to be of type Integer.
    67      *                   return type is guaranteed to be of type Integer.
    68      */
    68      */
    69     public Object getValue() {
    69     public Object getValue() {
    70         return new Integer(ib.get(0));
    70         return ib.get(0);
    71     }
    71     }
    72 
    72 
    73     /**
    73     /**
    74      * Return the current value of the IntegerInstrument as an int.
    74      * Return the current value of the IntegerInstrument as an int.
    75      *
    75      *