| Index: pkg/pathos/lib/path.dart
|
| diff --git a/pkg/pathos/lib/path.dart b/pkg/pathos/lib/path.dart
|
| index 145953f3c8aa619d13f4fbcbaec0c9df65a184dd..fbd23e35a773155b5e6aba2ee966e91da1b5296a 100644
|
| --- a/pkg/pathos/lib/path.dart
|
| +++ b/pkg/pathos/lib/path.dart
|
| @@ -436,7 +436,7 @@ class Builder {
|
| /// On POSIX systems, absolute paths start with a `/` (forward slash). On
|
| /// Windows, an absolute path starts with `\\`, or a drive letter followed by
|
| /// `:/` or `:\`.
|
| - bool isRelative(String path) => !isAbsolute(path);
|
| + bool isRelative(String path) => !this.isAbsolute(path);
|
|
|
| /// Returns `true` if [path] is a root-relative path and `false` if it's not.
|
| ///
|
|
|