From 3f96ec2f6a52d133bb85501210a5a8027688d4ae Mon Sep 17 00:00:00 2001 From: Roger Hu Date: Fri, 24 Mar 2017 00:36:57 -0700 Subject: [PATCH] clientKey can be null now --- Parse/src/main/java/com/parse/Parse.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Parse/src/main/java/com/parse/Parse.java b/Parse/src/main/java/com/parse/Parse.java index f9144b8a9..017cb143b 100644 --- a/Parse/src/main/java/com/parse/Parse.java +++ b/Parse/src/main/java/com/parse/Parse.java @@ -654,11 +654,6 @@ static void checkInit() { + "You must call Parse.initialize(Context)" + " before using the Parse library."); } - if (ParsePlugins.get().clientKey() == null) { - throw new RuntimeException("clientKey is null. " - + "You must call Parse.initialize(Context)" - + " before using the Parse library."); - } } static void checkContext() {