1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-17 00:07:41 +02:00

Code cleanup: remove double and unneded semicolons

This commit is contained in:
Arseniy Shestakov
2017-07-12 22:01:10 +03:00
parent 09df2dcfbb
commit dbcd79c48a
25 changed files with 29 additions and 29 deletions

View File

@ -61,7 +61,7 @@ jclass CAndroidVMHelper::findClassloadedClass(const std::string & name)
{
auto env = get();
return static_cast<jclass>(env->CallObjectMethod(vcmiClassLoader, vcmiFindClassMethod,
env->NewStringUTF(name.c_str())));;
env->NewStringUTF(name.c_str())));
}
void CAndroidVMHelper::callStaticVoidMethod(const std::string & cls, const std::string & method,