Skip to content

Commit c7944a3

Browse files
committed
Turn to public so ParseLiveQuery-Android can use
1 parent 03a25a3 commit c7944a3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Parse/src/main/java/com/parse/ParseDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @see com.parse.ParseEncoder
2828
*/
29-
/** package */ class ParseDecoder {
29+
/** package */ public class ParseDecoder {
3030

3131
// This class isn't really a Singleton, but since it has no state, it's more efficient to get the
3232
// default instance.

Parse/src/main/java/com/parse/ParsePlugins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import okhttp3.Request;
2222
import okhttp3.Response;
2323

24-
class ParsePlugins {
24+
public class ParsePlugins {
2525

2626
private static final String INSTALLATION_ID_LOCATION = "installationId";
2727

Parse/src/main/java/com/parse/ParseQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ private static void throwIfLDSEnabled(boolean enabled) {
297297
}
298298
}
299299

300-
/* package */ static class State<T extends ParseObject> {
300+
/* package */ public static class State<T extends ParseObject> {
301301

302302
/* package */ static class Builder<T extends ParseObject> {
303303

Parse/src/main/java/com/parse/ParseRESTCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* A helper object to send requests to the server.
3333
*/
34-
/** package */ class ParseRESTCommand extends ParseRequest<JSONObject> {
34+
/** package */ public class ParseRESTCommand extends ParseRequest<JSONObject> {
3535

3636
/* package */ static final String HEADER_APPLICATION_ID = "X-Parse-Application-Id";
3737
/* package */ static final String HEADER_CLIENT_KEY = "X-Parse-Client-Key";

Parse/src/main/java/com/parse/PointerEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Encodes {@link ParseObjects} as pointers. If the object does not have an objectId, throws an
1515
* exception.
1616
*/
17-
/** package */ class PointerEncoder extends PointerOrLocalIdEncoder {
17+
/** package */ public class PointerEncoder extends PointerOrLocalIdEncoder {
1818

1919
// This class isn't really a Singleton, but since it has no state, it's more efficient to get the
2020
// default instance.

0 commit comments

Comments
 (0)