| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- rename CL_PFX and CL_INS to better match the
colors they show.
- add more colors.
Output of:
- most host stuff is yellow
- most target stuff is green
- installing/copying files is cyan
- import/export includes and notice files is cyan
- bootimage/recoveryimage is cyan
- and some more colors in many places ;)
Change-Id: I5532afa4ba608e0a7c408516dc9f912f9ca389f7
|
|
|
|
|
|
| |
PDK builds have no Java APIs...
Change-Id: I719e0c206234d03a70f3178fd618676f8ee0e6f4
|
|
|
|
| |
Change-Id: If0dafa8e45de6a872bf1cc47942335493e96383b
|
|
|
|
| |
Change-Id: I13bcdbd27214e15235fa9687b6f15f8853f5f448
|
|
|
|
| |
Change-Id: I6a84717cf645e2a27cea9271c444d159c82439c5
|
|\ |
|
| |\
| | |
| | |
| | | |
Change-Id: I3d24628d38c99369f242733d9089d7c5669a4623
|
| | |
| | |
| | |
| | | |
Change-Id: I939cf1f227c14112656804d69c1afd7ead4a31ed
|
| | |
| | |
| | |
| | | |
Change-Id: I5c1792c90e6960c248beb44f995cb4440360025d
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If a method is declared by an interface implemented directly by a class,
or indirectly by any of its superclasses, removing a duplicate declaration
is not an API change.
(This fixes the master build, which is currently broken because getOption
and setOption were removed from DatagramSocketImpl because they were
duplicate declarations of the same methods in the implemented interface
SocketOptions.)
|
|\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'aca5e20e4a47a943fc77c30b8cfafc62a1fb33ea'
* commit 'aca5e20e4a47a943fc77c30b8cfafc62a1fb33ea':
Add missing @Override to DroidDoc and ApiCheck
|
| |
| |
| |
| | |
Change-Id: Ic7829a4ea62a614ef8b525bd84f8fbaaa4674d06
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
| |
@since tags in the code, it's pulled from the API XML files also used by
apicheck.
The code now reads the apicheck XML, and applies it's versions to the DroidDoc
class models. The models output the version to HDF, and that's picked up by
the CS templates.
The clearsilver templates will be changed to be pretty in a follow up change.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|