File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Parse/src/main/java/com/parse Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ private static void initializeParseHttpClientsWithParseNetworkInterceptors() {
618618 * @param interceptor
619619 * {@link ParseNetworkInterceptor} to be added.
620620 */
621- /* package */ static void addParseNetworkInterceptor (ParseNetworkInterceptor interceptor ) {
621+ public static void addParseNetworkInterceptor (ParseNetworkInterceptor interceptor ) {
622622 if (isInitialized ()) {
623623 throw new IllegalStateException ("`Parse#addParseNetworkInterceptor(ParseNetworkInterceptor)`"
624624 + " must be invoked before `Parse#initialize(Context)`" );
@@ -636,7 +636,7 @@ private static void initializeParseHttpClientsWithParseNetworkInterceptors() {
636636 * @param interceptor
637637 * {@link ParseNetworkInterceptor} to be removed.
638638 */
639- /* package */ static void removeParseNetworkInterceptor (ParseNetworkInterceptor interceptor ) {
639+ public static void removeParseNetworkInterceptor (ParseNetworkInterceptor interceptor ) {
640640 if (isInitialized ()) {
641641 throw new IllegalStateException ("`Parse#addParseNetworkInterceptor(ParseNetworkInterceptor)`"
642642 + " must be invoked before `Parse#initialize(Context)`" );
You can’t perform that action at this time.
0 commit comments