Searched refs:path2 (Results 1 – 1 of 1) sorted by relevance
325 private static IPath findCommonRoot(@NonNull IPath path1, @NonNull IPath path2) in findCommonRoot() argument327 if (path1.getDevice() != null && !path1.getDevice().equals(path2.getDevice())) { in findCommonRoot()335 final int count = Math.min(path1.segmentCount(), path2.segmentCount()); in findCommonRoot()337 if (path1.segment(i).equals(path2.segment(i))) { in findCommonRoot()338 result = result.append(Path.SEPARATOR + path2.segment(i)); in findCommonRoot()