Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jgit-dev] DirCacheEntry.mightBeRacilyClean correct?

In the method mightBeRacilyClean of DirCacheEntry there is the following:
 
if (smudge_s < mtime)
       return true;
 
Does this mean that an entry might be racily clean if its modification timestamp
is after the timestamp of the index file, not regarding the time distance?
 
This would lead to the result that an entry is possibly racily clean
even if the time distance is much more than one second.
 

Back to the top