From 6f49798bd9d4b5f0c2c9fae1bef98e590e69bdc9 Mon Sep 17 00:00:00 2001 From: Peter Badida Date: Thu, 3 Jan 2019 21:23:49 +0100 Subject: [PATCH] Remove incorrect explanation of no matching method error --- jnius/jnius_export_class.pxi | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jnius/jnius_export_class.pxi b/jnius/jnius_export_class.pxi index 558b162..03efc25 100644 --- a/jnius/jnius_export_class.pxi +++ b/jnius/jnius_export_class.pxi @@ -993,10 +993,6 @@ cdef class JavaMultipleMethod(object): scores.append((score, signature)) if not scores: - # @tito: - # if the java was waiting for an Object, and you didn't - # pass any of the PythonJavaClass, JavaClass, JavaObject, - # basestring, then it doesn't score it, and it won't work raise JavaException('No methods matching your arguments') scores.sort() score, signature = scores[-1]