Skip to content

Commit 63ecae5

Browse files
committed
update imports
1 parent 2d78cce commit 63ecae5

7 files changed

+7
-7
lines changed

csharp/ql/src/Linq/BadMultipleIteration.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
import csharp
15-
import Helpers
15+
import Linq.Helpers
1616

1717
/** The enumerable sequence is likely not to be repeatable. */
1818
predicate likelyNonRepeatableSequence(IEnumerableSequence seq) {

csharp/ql/src/Linq/MissedAllOpportunity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import csharp
14-
import Helpers
14+
import Linq.Helpers
1515

1616
/*
1717
* The purpose of this query is to find loops of the following form:

csharp/ql/src/Linq/MissedCastOpportunity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import csharp
14-
import Helpers
14+
import Linq.Helpers
1515

1616
from ForeachStmt fes, LocalVariableDeclStmt s
1717
where missedCastOpportunity(fes, s)

csharp/ql/src/Linq/MissedOfTypeOpportunity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import csharp
14-
import Helpers
14+
import Linq.Helpers
1515

1616
from ForeachStmt fes, LocalVariableDeclStmt s
1717
where missedOfTypeOpportunity(fes, s)

csharp/ql/src/Linq/MissedSelectOpportunity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import csharp
14-
import Helpers
14+
import Linq.Helpers
1515

1616
predicate oversized(LocalVariableDeclStmt s) {
1717
exists(Location loc |

csharp/ql/src/Linq/MissedWhereOpportunity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
import csharp
13-
import Helpers
13+
import Linq.Helpers
1414

1515
from ForeachStmt fes, IfStmt is
1616
where

csharp/ql/src/Linq/RedundantSelect.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import csharp
14-
import Helpers
14+
import Linq.Helpers
1515

1616
predicate isIdentityFunction(AnonymousFunctionExpr afe) {
1717
afe.getNumberOfParameters() = 1 and

0 commit comments

Comments
 (0)