Skip to content

Commit 2033e1a

Browse files
committed
First attempt to solve MO7 compilation errors
1 parent 35592b7 commit 2033e1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uniandes/tsdl/mutapk/operators/activity/NullValueIntentPutExtra.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public boolean performMutation(MutationLocation location, BufferedWriter writer,
3737
//
3838
//
3939
//Apply mutation
40-
newLines.add(" new-array v9, v9, [Landroid/os/Parcelable;");
40+
newLines.add(" new-array "+extraNamePos+", "+extraNamePos+", [Landroid/os/Parcelable;");
4141
newLines.add("");
42-
String invoke = lines.get(location.getLine()-1).replace(extraNamePos, "v9");
42+
String invoke = lines.get(location.getLine()-1);//.replace(extraNamePos, "v9");
4343
String newInvoke = invoke.substring(0, extraTypePos)+"[Landroid/os/Parcelable;"+invoke.substring(extraTypePos+extraTypeText.length());
4444
// System.out.println(newInvoke);
4545
newLines.add(newInvoke);

0 commit comments

Comments
 (0)