Skip to content

Commit 4a4d95c

Browse files
committed
Typo
1 parent d233d8f commit 4a4d95c

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

soot-infoflow/src/soot/jimple/infoflow/AbstractInfoflow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ else if (reason instanceof TimeoutReason)
10951095
// After the last intermediate result has been computed,
10961096
// we need to re-process those abstractions that
10971097
// received new neighbors in the meantime
1098-
builder.runIncrementalPathCompuation();
1098+
builder.runIncrementalPathComputation();
10991099

11001100
try {
11011101
resultExecutor.awaitCompletion();

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/BatchPathBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ public InfoflowResults getResults() {
8181
}
8282

8383
@Override
84-
public void runIncrementalPathCompuation() {
85-
innerBuilder.runIncrementalPathCompuation();
84+
public void runIncrementalPathComputation() {
85+
innerBuilder.runIncrementalPathComputation();
8686
}
8787

8888
@Override

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/ContextInsensitivePathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ protected boolean triggerComputationForNeighbors() {
152152
}
153153

154154
@Override
155-
public void runIncrementalPathCompuation() {
155+
public void runIncrementalPathComputation() {
156156
Set<AbstractionAtSink> incrementalAbs = new HashSet<>();
157157
for (Abstraction abs : pathCache.keySet())
158158
for (SourceContextAndPath scap : pathCache.get(abs)) {

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/ContextInsensitiveSourceFinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected Runnable getTaintPathTask(AbstractionAtSink abs) {
108108
}
109109

110110
@Override
111-
public void runIncrementalPathCompuation() {
111+
public void runIncrementalPathComputation() {
112112
// not implemented
113113
}
114114

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/ContextSensitivePathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ protected boolean checkForSource(Abstraction abs, SourceContextAndPath scap) {
244244
}
245245

246246
@Override
247-
public void runIncrementalPathCompuation() {
247+
public void runIncrementalPathComputation() {
248248
Set<AbstractionAtSink> incrementalAbs = new HashSet<>();
249249
for (Abstraction abs : pathCache.keySet())
250250
for (SourceContextAndPath scap : pathCache.get(abs)) {

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/EmptyPathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void addResultAvailableHandler(OnPathBuilderResultAvailable handler) {
2828
}
2929

3030
@Override
31-
public void runIncrementalPathCompuation() {
31+
public void runIncrementalPathComputation() {
3232
}
3333

3434
@Override

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/IAbstractionPathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ public interface OnPathBuilderResultAvailable {
5656
* computed. This method is usually called after the taint propagation has
5757
* finished when incremental path building has been used in between.
5858
*/
59-
public void runIncrementalPathCompuation();
59+
public void runIncrementalPathComputation();
6060

6161
}

soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/RecursivePathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public InfoflowResults getResults() {
174174
}
175175

176176
@Override
177-
public void runIncrementalPathCompuation() {
177+
public void runIncrementalPathComputation() {
178178
// not implemented
179179
}
180180

0 commit comments

Comments
 (0)