| Index: pkg/analyzer_experimental/lib/src/generated/java_io.dart
|
| diff --git a/pkg/analyzer_experimental/lib/src/generated/java_io.dart b/pkg/analyzer_experimental/lib/src/generated/java_io.dart
|
| index d73f79e4115878af0a3209b2c478d07869a9ab37..d6e79e8f64e989c7c5fa7860ea60491fff46fcd1 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/java_io.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/java_io.dart
|
| @@ -88,7 +88,9 @@ class JavaFile {
|
| return new JavaFile(parent);
|
| }
|
| String getAbsolutePath() => pathos.absolute(_path);
|
| - String getCanonicalPath() => _newFile().fullPathSync();
|
| + // TODO(scheglov) it seems that this method is broken on Windows
|
| +// String getCanonicalPath() => _newFile().fullPathSync();
|
| + String getCanonicalPath() => getAbsolutePath();
|
| JavaFile getAbsoluteFile() => new JavaFile(getAbsolutePath());
|
| JavaFile getCanonicalFile() => new JavaFile(getCanonicalPath());
|
| bool exists() {
|
|
|