| Index: pkg/pathos/lib/path.dart
|
| diff --git a/pkg/pathos/lib/path.dart b/pkg/pathos/lib/path.dart
|
| index eeb426db62b5744701dc049b0ca4adbdf6e874fe..c33bd8726a6b516493e75ebd5fa30c13304579df 100644
|
| --- a/pkg/pathos/lib/path.dart
|
| +++ b/pkg/pathos/lib/path.dart
|
| @@ -475,7 +475,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.
|
| ///
|
|
|