Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
markushi committed Jul 13, 2023
1 parent 09953d7 commit 2860fa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static class SideLoadedInfo {
private final boolean isSideLoaded;
private final @Nullable String installerStore;

public SideLoadedInfo(boolean isSideLoaded, @Nullable String installerStore) {
public SideLoadedInfo(final boolean isSideLoaded, final @Nullable String installerStore) {
this.isSideLoaded = isSideLoaded;
this.installerStore = installerStore;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
import java.io.RandomAccessFile;
import java.nio.charset.Charset;
import java.util.UUID;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.TestOnly;

@ApiStatus.Internal
public final class Installation {
@TestOnly static @Nullable String deviceId = null;

Expand Down

0 comments on commit 2860fa1

Please sign in to comment.