From 89a4664e86d7b3fe3f99dfd2d912809fc5499c37 Mon Sep 17 00:00:00 2001 From: Luck Date: Tue, 5 Sep 2017 21:58:21 +0100 Subject: [PATCH] Updated Developer API (markdown) --- Developer-API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Developer-API.md b/Developer-API.md index 5bcdc05..6c4facf 100644 --- a/Developer-API.md +++ b/Developer-API.md @@ -405,7 +405,7 @@ Once you have a `Contexts` instance, you can start using the `UserData` object. The containing data is split into two separate sections, 'Permission' and 'Meta' data. ```java UserData cachedData = user.getCachedData(); -Contexts contexts = null; +Contexts contexts = ...; PermissionData permissionData = cachedData.getPermissionData(contexts); MetaData metaData = cachedData.getMetaData(contexts);