javaextensions/midprms_db/javasrc/com/nokia/mj/impl/rms/RecordIdCache.java
branchRCL_3
changeset 83 26b2b12093af
parent 77 7cee158cb8cd
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
    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[iRecordIds.length] = aRecordId;
    91         temp[0] = aRecordId;
    92         System.arraycopy(iRecordIds, 0, temp, 0, iRecordIds.length);
    92         System.arraycopy(iRecordIds, 0, temp, 1, iRecordIds.length);
    93         iRecordIds = temp;
    93         iRecordIds = temp;
    94     }
    94     }
    95 
    95 
    96 }
    96 }
    97 
    97