@@ -3,40 +3,40 @@ rule = "scala:fix.CrossCompat"
33 */
44package fix
55
6- import scala .collection .{ immutable => i , mutable => m }
7- import scala .{ collection => c }
6+ import scala .collection .immutable
7+ import scala .collection . mutable
88
99object CompanionSrc {
1010
11- (null : c .IndexedSeq [Int ]).companion
12- (null : c .Iterable [Int ]).companion
13- (null : c .Seq [Int ]).companion
14- (null : c .Traversable [Int ]).companion
11+ (null : collection .IndexedSeq [Int ]).companion
12+ (null : collection .Iterable [Int ]).companion
13+ (null : collection .Seq [Int ]).companion
14+ (null : collection .Traversable [Int ]).companion
1515
16- (null : i .HashSet [Int ]).companion
17- (null : i .IndexedSeq [Int ]).companion
18- (null : i .Iterable [Int ]).companion
19- (null : i .LinearSeq [Int ]).companion
20- (null : i .List [Int ]).companion
21- (null : i .ListSet [Int ]).companion
22- (null : i .Queue [Int ]).companion
23- (null : i .Seq [Int ]).companion
24- (null : i .Set [Int ]).companion
25- (null : i .Stream [Int ]).companion
26- (null : i .Traversable [Int ]).companion
27- (null : i .Vector [Int ]).companion
16+ (null : immutable .HashSet [Int ]).companion
17+ (null : immutable .IndexedSeq [Int ]).companion
18+ (null : immutable .Iterable [Int ]).companion
19+ (null : immutable .LinearSeq [Int ]).companion
20+ (null : immutable .List [Int ]).companion
21+ (null : immutable .ListSet [Int ]).companion
22+ (null : immutable .Queue [Int ]).companion
23+ (null : immutable .Seq [Int ]).companion
24+ (null : immutable .Set [Int ]).companion
25+ (null : immutable .Stream [Int ]).companion
26+ (null : immutable .Traversable [Int ]).companion
27+ (null : immutable .Vector [Int ]).companion
2828
29- (null : m .ArrayBuffer [Int ]).companion
30- (null : m .ArraySeq [Int ]).companion
31- (null : m .ArrayStack [Int ]).companion
32- (null : m .Buffer [Int ]).companion
33- (null : m .HashSet [Int ]).companion
34- (null : m .IndexedSeq [Int ]).companion
35- (null : m .Iterable [Int ]).companion
36- (null : m .LinearSeq [Int ]).companion
37- (null : m .LinkedHashSet [Int ]).companion
38- (null : m .Queue [Int ]).companion
39- (null : m .Seq [Int ]).companion
40- (null : m .Set [Int ]).companion
41- (null : m .Traversable [Int ]).companion
29+ (null : mutable .ArrayBuffer [Int ]).companion
30+ (null : mutable .ArraySeq [Int ]).companion
31+ (null : mutable .ArrayStack [Int ]).companion
32+ (null : mutable .Buffer [Int ]).companion
33+ (null : mutable .HashSet [Int ]).companion
34+ (null : mutable .IndexedSeq [Int ]).companion
35+ (null : mutable .Iterable [Int ]).companion
36+ (null : mutable .LinearSeq [Int ]).companion
37+ (null : mutable .LinkedHashSet [Int ]).companion
38+ (null : mutable .Queue [Int ]).companion
39+ (null : mutable .Seq [Int ]).companion
40+ (null : mutable .Set [Int ]).companion
41+ (null : mutable .Traversable [Int ]).companion
4242}
0 commit comments