From 33ffe6769081401741813507ab01faa5ede80eae Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 16 Oct 2012 07:42:41 +0200 Subject: ProcAddressEmitter: Remove 'guessing' argument names from types, since they are ambiguous - better use default generic ones to avoid confusion. --- src/java/com/jogamp/gluegen/MethodBinding.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/java/com/jogamp/gluegen/MethodBinding.java') diff --git a/src/java/com/jogamp/gluegen/MethodBinding.java b/src/java/com/jogamp/gluegen/MethodBinding.java index a8d4b30..8c2bd9e 100644 --- a/src/java/com/jogamp/gluegen/MethodBinding.java +++ b/src/java/com/jogamp/gluegen/MethodBinding.java @@ -157,8 +157,8 @@ public class MethodBinding { are no namespace clashes with these fabricated argument names. */ public String getArgumentName(int i) { - String ret = sym.getArgumentName(i); - if (ret != null) { + final String ret = sym.getArgumentName(i); + if ( null != ret ) { return ret; } return "arg" + i; -- cgit v1.2.3