Skip to content

Commit

Permalink
made a method protected
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenArzt committed Oct 14, 2024
1 parent 2d62400 commit 0237279
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/soot/dexpler/DexBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@

import static soot.dexpler.instructions.InstructionFactory.fromInstruction;

import com.google.common.collect.ArrayListMultimap;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
Expand Down Expand Up @@ -63,6 +61,8 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.collect.ArrayListMultimap;

import soot.Body;
import soot.DoubleType;
import soot.FloatType;
Expand Down Expand Up @@ -1096,7 +1096,7 @@ public void convertFloatsAndDoubles(Body b, final Jimple jimple) {
* @param unit
* the statement
*/
private void removeDexplerTags(Unit unit) {
protected void removeDexplerTags(Unit unit) {
for (Iterator<Tag> it = unit.getTags().iterator(); it.hasNext();) {
Tag t = it.next();
if (t instanceof DexplerTag) {
Expand Down

0 comments on commit 0237279

Please sign in to comment.