MCPcopy Index your code
hub / github.com/xpipe-io/xpipe / equals

Method equals

core/src/main/java/io/xpipe/core/FilePath.java:50–58  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

48 }
49
50 @Override
51 public boolean equals(Object o) {
52 if (o == null || getClass() != o.getClass()) {
53 return false;
54 }
55 FilePath filePath = (FilePath) o;
56 return Objects.equals(
57 normalize().removeTrailingSlash().value, filePath.normalize().removeTrailingSlash().value);
58 }
59
60 public String toString() {
61 return value;

Callers 15

parseMethod · 0.45
removeTrailingSlashMethod · 0.45
getParentMethod · 0.45
toUnixMethod · 0.45
isRootMethod · 0.45
storageInitMethod · 0.45
findDefaultCategoryMethod · 0.45
showMethod · 0.45
finishMethod · 0.45
guiDialogMethod · 0.45
createOptionsMethod · 0.45
executeImplMethod · 0.45

Calls 2

normalizeMethod · 0.95
removeTrailingSlashMethod · 0.80

Tested by

no test coverage detected