Skip to content

Commit 9baedf4

Browse files
committed
Fix method name.
1 parent 90384ce commit 9baedf4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

com.ibm.wala.cast.python.ml/source/com/ibm/wala/cast/python/ml/client/RaggedConstant.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public RaggedConstant(PointsToSetVariable source) {
5252
super(source);
5353
}
5454

55-
private static Set<Integer> getPossibleListLengths(
55+
private static Set<Integer> getPossibleOuterListLengths(
5656
PropagationCallGraphBuilder builder, OrdinalSet<InstanceKey> valuePointsToSet) {
5757
Set<Integer> ret = HashSetFactory.make();
5858
PointerAnalysis<InstanceKey> pointerAnalysis = builder.getPointerAnalysis();
@@ -159,7 +159,8 @@ protected Set<List<Dimension<?>>> getShapesOfValue(
159159
// Step 3: Construct shape with rank K and ragged rank R.
160160

161161
// Get the length of the outer list.
162-
Set<Integer> possibleOuterListLengths = getPossibleListLengths(builder, valuePointsToSet);
162+
Set<Integer> possibleOuterListLengths =
163+
getPossibleOuterListLengths(builder, valuePointsToSet);
163164

164165
for (int outerListLength : possibleOuterListLengths) {
165166
List<Dimension<?>> shape = new ArrayList<>();

0 commit comments

Comments
 (0)