File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -299,9 +299,6 @@ class Dartdoc {
299
299
300
300
void checkDirectory (Folder dir) {
301
301
for (var f in dir.getChildren ()) {
302
- //if (path.basename(f.path) == '.' || path.basename(f.path) == '..') {
303
- // continue;
304
- // }
305
302
if (f is Folder ) {
306
303
checkDirectory (f);
307
304
}
Original file line number Diff line number Diff line change @@ -52,15 +52,17 @@ extension ResourceProviderExtensions on ResourceProvider {
52
52
sdkDir.path, PubPackageMeta .sdkDirParent (sdkDir, this ).path));
53
53
return sdkDir;
54
54
} else {
55
- return getFolder ('TODO(srawlins)' );
55
+ // TODO(srawlins): Return what is needed for tests.
56
+ return null ;
56
57
}
57
58
}
58
59
59
60
String get resolvedExecutable {
60
61
if (this is PhysicalResourceProvider ) {
61
62
return io.Platform .resolvedExecutable;
62
63
} else {
63
- return 'TODO(srawlins)' ;
64
+ // TODO(srawlins): Return what is needed for tests.
65
+ return null ;
64
66
}
65
67
}
66
68
You can’t perform that action at this time.
0 commit comments