Skip to content

Commit 56a8220

Browse files
author
Manny Jimenez
committed
responding to feedback about release internal
1 parent 3633bc8 commit 56a8220

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

firebase-app-distribution/src/main/java/com/google/firebase/app/distribution/AppDistributionReleaseInternal.java

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,74 +30,74 @@
3030
abstract class AppDistributionReleaseInternal {
3131

3232
@NonNull
33-
public static Builder builder() {
33+
static Builder builder() {
3434
return new AutoValue_AppDistributionReleaseInternal.Builder();
3535
}
3636

3737
/** The short bundle version of this build (example 1.0.0) */
3838
@NonNull
39-
public abstract String getDisplayVersion();
39+
abstract String getDisplayVersion();
4040

4141
/** The bundle version of this build (example: 123) */
4242
@NonNull
43-
public abstract String getBuildVersion();
43+
abstract String getBuildVersion();
4444

4545
/** The release notes for this build */
4646
@Nullable
47-
public abstract String getReleaseNotes();
47+
abstract String getReleaseNotes();
4848

4949
/** The binary type for this build */
5050
@NonNull
51-
public abstract BinaryType getBinaryType();
51+
abstract BinaryType getBinaryType();
5252

5353
/** Hash of binary of an Android app */
5454
@Nullable
55-
public abstract String getCodeHash();
55+
abstract String getCodeHash();
5656

5757
/** Efficient hash of an Android apk. Used to identify a release */
5858
@Nullable
59-
public abstract String getApkHash();
59+
abstract String getApkHash();
6060

6161
/**
6262
* IAS artifact id. This value is inserted into the manifest of APK's installed via Used to map a
6363
* release to an APK installed via an app bundle
6464
*/
6565
@Nullable
66-
public abstract String getIasArtifactId();
66+
abstract String getIasArtifactId();
6767

6868
/** Short-lived download URL */
6969
@Nullable
70-
public abstract String getDownloadUrl();
70+
abstract String getDownloadUrl();
7171

7272
/** Builder for {@link AppDistributionReleaseInternal}. */
7373
@AutoValue.Builder
74-
public abstract static class Builder {
74+
abstract static class Builder {
7575

7676
@NonNull
77-
public abstract Builder setDisplayVersion(@NonNull String value);
77+
abstract Builder setDisplayVersion(@NonNull String value);
7878

7979
@NonNull
80-
public abstract Builder setBuildVersion(@NonNull String value);
80+
abstract Builder setBuildVersion(@NonNull String value);
8181

8282
@NonNull
83-
public abstract Builder setReleaseNotes(@Nullable String value);
83+
abstract Builder setReleaseNotes(@Nullable String value);
8484

8585
@NonNull
86-
public abstract Builder setBinaryType(@NonNull BinaryType value);
86+
abstract Builder setBinaryType(@NonNull BinaryType value);
8787

8888
@NonNull
89-
public abstract Builder setCodeHash(@NonNull String value);
89+
abstract Builder setCodeHash(@NonNull String value);
9090

9191
@NonNull
92-
public abstract Builder setApkHash(@NonNull String value);
92+
abstract Builder setApkHash(@NonNull String value);
9393

9494
@NonNull
95-
public abstract Builder setIasArtifactId(@NonNull String value);
95+
abstract Builder setIasArtifactId(@NonNull String value);
9696

9797
@NonNull
98-
public abstract Builder setDownloadUrl(@NonNull String value);
98+
abstract Builder setDownloadUrl(@NonNull String value);
9999

100100
@NonNull
101-
public abstract AppDistributionReleaseInternal build();
101+
abstract AppDistributionReleaseInternal build();
102102
}
103103
}

0 commit comments

Comments
 (0)