Skip to content

Commit 81bac7d

Browse files
committed
Make the method protected so that subclasses can override it.
1 parent e8fee35 commit 81bac7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ protected Set<List<Dimension<?>>> getShapes(
298298
* @param pointsToSet The points-to set of the value from which the shape will be derived.
299299
* @return A set of possible shapes of the tensor returned by this generator.
300300
*/
301-
private Set<List<Dimension<?>>> getShapesOfValue(
301+
protected Set<List<Dimension<?>>> getShapesOfValue(
302302
PropagationCallGraphBuilder builder, OrdinalSet<InstanceKey> valuePointsToSet) {
303303
if (valuePointsToSet == null || valuePointsToSet.isEmpty())
304304
throw new IllegalArgumentException(

0 commit comments

Comments
 (0)