File tree 2 files changed +7
-4
lines changed
zinc-core/src/main/scala/sbt/internal/inc
zinc-scripted/src/test/scala/sbt/internal/inc
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -184,15 +184,15 @@ trait Relations {
184
184
private [inc] def externalDependencies : ExternalDependencies
185
185
186
186
/**
187
- * The class dependency relation between classes introduced by member reference excluding local references
187
+ * The class dependency relation between classes introduced
188
+ * by member reference excluding excluding same-source references.
188
189
*
189
190
* NOTE: All inheritance dependencies are included in this relation because in order to
190
191
* inherit from a member you have to refer to it. If you check documentation of `inheritance`
191
192
* you'll see that there's small oddity related to traits being the first parent of a
192
193
* class/trait that results in additional parents being introduced due to normalization.
193
194
*
194
- * Because `inheritance` includes local relations, `memberRef` is not a superset of `inheritance`
195
- * of `inheritance` is preserved.
195
+ * Because `inheritance` includes same-source references, `memberRef` is not a superset of `inheritance`
196
196
*/
197
197
private [inc] def memberRef : ClassDependencies
198
198
Original file line number Diff line number Diff line change @@ -810,7 +810,10 @@ case class ProjectStructure(
810
810
import scala .collection .JavaConverters ._
811
811
val map = new java.util.HashMap [String , String ]
812
812
properties.asScala foreach { case (k : String , v : String ) => map.put(k, v) }
813
- val externalHooks = new DefaultExternalHooks (Optional .empty[ExternalHooks .Lookup ], Optional .empty[XClassFileManager ])
813
+ val externalHooks = new DefaultExternalHooks (
814
+ Optional .empty[ExternalHooks .Lookup ],
815
+ Optional .empty[XClassFileManager ]
816
+ )
814
817
.withInvalidationProfiler(profiler)
815
818
val base = IncOptions
816
819
.of()
You can’t perform that action at this time.
0 commit comments