WALA/com.ibm.wala.ide.jsdt
Ben Liblit 6087b73cee Fix or suppress all 242 Eclipse warnings about unused parameters
In general, my approach was to try to eliminate each unused parameter
using Eclipse's "Change Method Signature" refactoring.  That did not
always succeed: a parameter may be unused in some base class method,
but then be used in subclass's override of that method.  In cases
where refactoring to eliminate a parameter failed, I instead annotated
the parameter with '@SuppressWarnings("unused")' to silence the
warning.

Note: this group of changes creates a significant risk of
incompatibility for third-party WALA code.  Some removed parameters
change externally-visible APIs.  Furthermore, these changes do not
necessarily lead to Java compilation errors.  For example, suppose
third-party code subclasses a WALA class or interface, overrides a
method, but does not annotate that method as @Override.  Removing a
parameter means that the third-party method no longer overrides.  This
can quietly change code behavior without compile-time errors or
warnings.  This is exactly why one should use @Override wherever
possible, but we cannot guarantee that third-party WALA users have
done that.
2017-07-31 15:29:00 -07:00
..
.settings Disable Eclipse warnings about assignments to parameters 2017-07-18 20:43:36 -07:00
META-INF Externalize bundle names and vendors 2017-06-07 17:42:11 +02:00
OSGI-INF/l10n Externalize bundle names and vendors 2017-06-07 17:42:11 +02:00
source/com/ibm/wala Fix or suppress all 242 Eclipse warnings about unused parameters 2017-07-31 15:29:00 -07:00
.classpath fixes to regression tests: 2015-03-24 21:51:35 -04:00
.project separate JSDT stuff 2012-08-21 15:53:16 -04:00
build.properties Externalize bundle names and vendors 2017-06-07 17:42:11 +02:00
pom.xml update version to 1.4.3-SNAPSHOT 2017-04-19 09:19:09 -07:00