File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
src/compiler/scala/tools/nsc/symtab/classfile Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ abstract class ClassfileParser {
366
366
// - better owner than `NoSymbol`
367
367
// - remove eager warning
368
368
val msg = s " Class $name not found - continuing with a stub. "
369
- if (! settings.isScaladoc) warning(msg)
369
+ if (( ! settings.isScaladoc) && (settings.verbose || settings.developer) ) warning(msg)
370
370
return NoSymbol .newStubSymbol(name.toTypeName, msg)
371
371
}
372
372
val completer = new loaders.ClassfileLoader (file)
Original file line number Diff line number Diff line change 1
1
Recompiling after deleting t7439-run.obj/A_1.class
2
- pos: NoPosition Class A_1 not found - continuing with a stub. WARNING
2
+
Original file line number Diff line number Diff line change 1
- pos: NoPosition Class A_1 not found - continuing with a stub. WARNING
1
+
Original file line number Diff line number Diff line change 1
1
Compiling Client1
2
- pos: NoPosition Class Waiter not found - continuing with a stub. WARNING
2
+
3
3
Compiling Client2
4
- pos: NoPosition Class Waiter not found - continuing with a stub. WARNING
5
4
pos: NoPosition Unable to locate class corresponding to inner class entry for Predicate in owner Waiter ERROR
You can’t perform that action at this time.
0 commit comments