Skip to content

Commit

Permalink
Fixed cannot call public methods in via reflection (#4249)
Browse files Browse the repository at this point in the history
* modified package-private to public

* update format for storage/Option.java
  • Loading branch information
charlesliqlogic authored and chingor13 committed Jan 3, 2019
1 parent b7c1878 commit 2b9f530
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 2b9f530

Please sign in to comment.