Revert "newer standards prefer nullptr over NULL - this is most of them but there are others too"

This reverts commit 3e4cc36e7e.
This commit is contained in:
DarthArgus
2016-02-11 19:44:31 -06:00
parent 3e4cc36e7e
commit 8e2160f33e
937 changed files with 14983 additions and 14983 deletions
@@ -56,7 +56,7 @@ const JNINativeMethod NATIVES[] = {
* @param self class calling this function
* @param id the stringId to find
*
* @return the string, or nullptr on error
* @return the string, or null on error
*/
jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject self, jobject id)
{
@@ -64,7 +64,7 @@ jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject sel
if (id == 0)
{
WARNING(true, ("JavaLibrary::log getString is nullptr."));
WARNING(true, ("JavaLibrary::log getString is NULL."));
return 0;
}
@@ -116,7 +116,7 @@ jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject sel
* @param self class calling this function
* @param ids array of stringIds to find
*
* @return an array of strings, or nullptr on error
* @return an array of strings, or null on error
*/
jobjectArray JNICALL ScriptMethodsStringNamespace::getStrings(JNIEnv *env, jobject self, jobjectArray ids)
{