Commit 14e224b6 authored by Jacob Potter's avatar Jacob Potter

Remove trailing whitespace

parent 1ef25936
...@@ -135,7 +135,7 @@ void jniThrowAssertionError(JNIEnv * env, const char * file, int line, const cha ...@@ -135,7 +135,7 @@ void jniThrowAssertionError(JNIEnv * env, const char * file, int line, const cha
char buf[256]; char buf[256];
#if (defined _MSC_VER) && (_MSC_VER < 1900) #if (defined _MSC_VER) && (_MSC_VER < 1900)
// snprintf not implemented on MSVC prior to 2015 // snprintf not implemented on MSVC prior to 2015
_snprintf(buf, sizeof buf, "djinni (%s:%d): %s", file_basename, line, check); _snprintf(buf, sizeof buf, "djinni (%s:%d): %s", file_basename, line, check);
#else #else
snprintf(buf, sizeof buf, "djinni (%s:%d): %s", file_basename, line, check); snprintf(buf, sizeof buf, "djinni (%s:%d): %s", file_basename, line, check);
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
- (void)methodThatTakesString:(__unused NSString *)string - (void)methodThatTakesString:(__unused NSString *)string
{ {
} }
- (void)testCallingMethodThatTakesStringWithConstant - (void)testCallingMethodThatTakesStringWithConstant
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment