Skip to content

Commit d2972cb

Browse files
committed
Add back alias for module
1 parent f342756 commit d2972cb

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

  • csharp/ql/lib/semmle/code/csharp/dataflow
  • java/ql/lib/semmle/code/java/dataflow

csharp/ql/lib/semmle/code/csharp/dataflow/Bound.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ private module BoundDefs implements SharedBound::BoundDefinitions<CS::Location>
2929
predicate interestingExprBound(Expr e) { CU::systemArrayLengthAccess(e.getExpr()) }
3030
}
3131

32-
import SharedBound::Bound<CS::Location, BoundDefs>
32+
module BoundImpl = SharedBound::Bound<CS::Location, BoundDefs>;
33+
34+
import BoundImpl

java/ql/lib/semmle/code/java/dataflow/Bound.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ private module BoundDefs implements SharedBound::BoundDefinitions<J::Location> {
3131
}
3232
}
3333

34-
import SharedBound::Bound<J::Location, BoundDefs>
34+
module BoundImpl = SharedBound::Bound<J::Location, BoundDefs>;
35+
36+
import BoundImpl

0 commit comments

Comments
 (0)