WALA/com.ibm.wala.scandroid/source/org/scandroid/util
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
..
AndroidAnalysisContext.java Remove several unused locals and clean up surrounding code 2017-05-26 14:25:03 -07:00
CGAnalysisContext.java Remove several unused locals and clean up surrounding code 2017-05-26 14:25:03 -07:00
CLISCanDroidOptions.java Declare private methods static wherever possible 2017-06-07 08:29:23 -07:00
DexDotUtil.java Discard results of BufferedInputStream.read() calls 2017-05-26 14:25:03 -07:00
EmptyProgressMonitor.java Add @Override annotations wherever possible (#178) 2017-05-08 07:39:49 -07:00
EntryPoints.java Fix or suppress all 242 Eclipse warnings about unused parameters 2017-07-31 15:29:00 -07:00
IEntryPointSpecifier.java cross-cutting changes to make more of WALA runnable with TeaVM. The biggest change is refactoring to AnalysisCache and friends; since TeaVM does not support SoftReference, I needed to add a layer of interfaces so that I can use a more simpleminded caching implementation for TeaVM. There are other changes to Module and friends to break connections with File and URL, which also cause TeaVM grief. I also organized imports in many places to remove unused types that caused trouble. 2017-02-02 20:33:27 -05:00
ISCanDroidOptions.java scandriod merge 2014-10-01 21:32:36 -04:00
LoaderUtils.java scandriod merge 2014-10-01 21:32:36 -04:00
ThrowingSSAInstructionVisitor.java scandriod merge 2014-10-01 21:32:36 -04:00