예제 #1
0
 private static int createAndFillRecord(
     @NotNull NewVirtualFileSystem delegateSystem,
     @NotNull VirtualFile delegateFile,
     int parentId,
     @NotNull FileAttributes attributes) {
   final int childId = FSRecords.createRecord();
   writeAttributesToRecord(childId, parentId, delegateFile, delegateSystem, attributes);
   return childId;
 }