Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed cannot call public methods in via reflection #4249

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* BasePath represents a path sequence in the Firestore database. It is composed of an ordered
* sequence of string segments.
*/
abstract class BasePath<B extends BasePath<B>> implements Comparable<B> {
public abstract class BasePath<B extends BasePath<B>> implements Comparable<B> {

/**
* Returns the segments that make up this path.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* Abstract class that collects and bundles all write operations for {@link Transaction} and {@link
* WriteBatch}.
*/
abstract class UpdateBuilder<T extends UpdateBuilder> {
public abstract class UpdateBuilder<T extends UpdateBuilder> {

private static class Mutation {
Write.Builder document;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.Objects;

/** Base class for Storage operation option. */
abstract class Option implements Serializable {
public abstract class Option implements Serializable {

private static final long serialVersionUID = -73199088766477208L;

Expand Down