File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
soot-infoflow/src/soot/jimple/infoflow Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1670,7 +1670,7 @@ protected static class SourceOrSink {
16701670 private final SinkInfo sinkInfo ;
16711671 private final SourceSinkState state ;
16721672
1673- protected SourceOrSink (SourceInfo sourceInfo , SinkInfo sinkInfo ) {
1673+ public SourceOrSink (SourceInfo sourceInfo , SinkInfo sinkInfo ) {
16741674 this .sourceInfo = sourceInfo ;
16751675 this .sinkInfo = sinkInfo ;
16761676 if (sourceInfo != null && sinkInfo == null )
@@ -1683,15 +1683,15 @@ else if (sourceInfo != null && sinkInfo != null)
16831683 this .state = SourceSinkState .NEITHER ;
16841684 }
16851685
1686- protected SourceSinkState getState () {
1686+ public SourceSinkState getState () {
16871687 return state ;
16881688 }
16891689
1690- protected SourceInfo getSourceInfo () {
1690+ public SourceInfo getSourceInfo () {
16911691 return sourceInfo ;
16921692 }
16931693
1694- protected SinkInfo getSinkInfo () {
1694+ public SinkInfo getSinkInfo () {
16951695 return sinkInfo ;
16961696 }
16971697
You can’t perform that action at this time.
0 commit comments