Skip to content

Commit

Permalink
Bump to 8.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jun 21, 2023
1 parent 10e45e9 commit da3bcb8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.android.tools'
version '8.2.9'
version '8.2.14'

repositories {
mavenCentral()
Expand Down
9 changes: 9 additions & 0 deletions src/main/java/com/android/tools/r8/lightir/LirCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
import com.google.common.collect.ImmutableMap;
import it.unimi.dsi.fastutil.ints.Int2ReferenceMap;
import it.unimi.dsi.fastutil.ints.Int2ReferenceOpenHashMap;
import org.jetbrains.annotations.NotNull;

import java.util.Map;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
Expand Down Expand Up @@ -413,6 +415,13 @@ public Code getCodeAsInlining(DexMethod caller, DexEncodedMethod callee, DexItem
throw new Unimplemented();
}

@NotNull
@Override
public Code copySubtype() {
// Should not be any circumstance where this model needs to be cloned.
throw new Unimplemented();
}

@Override
public boolean isEmptyVoidMethod() {
for (LirInstructionView view : this) {
Expand Down

0 comments on commit da3bcb8

Please sign in to comment.