commit | 32fd763272fd336222abe8dcc2444b685a6af0fb | [log] [tgz] |
---|---|---|
author | Jesse Wilson <jessewilson@google.com> | Thu Apr 08 09:44:42 2010 -0700 |
committer | Jesse Wilson <jessewilson@google.com> | Thu Apr 08 09:44:42 2010 -0700 |
tree | 439d20bbf2409764cf6266cb69aad82dc2c2f4d2 | |
parent | f47dc0638a58cf1976d0a3b42ed6da1d6b8fd161 [diff] |
Fixing apicheck to cope with interfaces inherited from other interfaces. For example, in Java 5, FutureTask was declared like this: public class FutureTask<V> implements Runnable, Future<V> {} In Java 6, it's declared like this: public class FutureTask<V> implements RunnableFuture<V> {} public interface RunnableFuture extends Runnable, Future<V> {} Change-Id: I0cd66a655fbe7fd5c7c48099d656b7a39368dac4