javaextensions/midprms_db/javasrc/com/nokia/mj/impl/rms/RecordIdCache.java
branchRCL_3
changeset 77 7cee158cb8cd
parent 19 04becd199f91
child 83 26b2b12093af
equal deleted inserted replaced
71:d5e927d5853b 77:7cee158cb8cd
    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