You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removes the id currently associated with <code>dirFilePath</code> from cache. Useful during folder delete operations.
59
+
* This method has no effect if the content of the given dirFile is not currently cached.
60
+
*
61
+
* @param dirFilePath The dirFile for which the cache should be deleted.
62
+
*/
63
+
publicvoiddelete(PathdirFilePath) {
58
64
ids.invalidate(dirFilePath);
59
65
}
60
66
67
+
/**
68
+
* Transfers ownership from the id currently associated with <code>srcDirFilePath</code> to <code>dstDirFilePath</code>. Usefule during folder move operations.
69
+
* This method has no effect if the content of the source dirFile is not currently cached.
70
+
*
71
+
* @param srcDirFilePath The dirFile that contained the cached id until now.
72
+
* @param dstDirFilePath The dirFile that will contain the id from now on.
0 commit comments