javaextensions/midprms_db/javasrc/com/nokia/mj/impl/rms/RecordIdCache.java
changeset 76 4ad59aaee882
parent 21 2a9601315dfc
child 83 26b2b12093af
equal deleted inserted replaced
69:773449708c84 76:4ad59aaee882
    86     }
    86     }
    87 
    87 
    88     private void insertRecordId(int aRecordId)
    88     private void insertRecordId(int aRecordId)
    89     {
    89     {
    90         int[] temp = new int[iRecordIds.length + 1];
    90         int[] temp = new int[iRecordIds.length + 1];
    91         temp[0] = aRecordId;
    91         temp[iRecordIds.length] = aRecordId;
    92         System.arraycopy(iRecordIds, 0, temp, 1, iRecordIds.length);
    92         System.arraycopy(iRecordIds, 0, temp, 0, iRecordIds.length);
    93         iRecordIds = temp;
    93         iRecordIds = temp;
    94     }
    94     }
    95 
    95 
    96 }
    96 }
    97 
    97