From d8aed4b275ddc68b7ca84dda3fe7df1765ffe23b Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Thu, 26 Nov 2020 00:26:42 +0000 Subject: droidstubs: Remove unnecessary setting of DistFiles Instead of setting DistFiles to use the api stub (if present) as the default dist file this simply makes OutputFiles(tag) return the api stub file for the DefaultDistTag. Test: m nothing m dist sdk - before and after this change, compare result to make sure that there are no significant differences. Bug: 174226317 Change-Id: I39d615c5bf8d20d59db7eeb98d942210ec0aa8ba --- java/droiddoc.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'java/droiddoc.go') diff --git a/java/droiddoc.go b/java/droiddoc.go index cf7f4fb5d..da8489ac1 100644 --- a/java/droiddoc.go +++ b/java/droiddoc.go @@ -1050,7 +1050,8 @@ func (d *Droidstubs) OutputFiles(tag string) (android.Paths, error) { return android.Paths{d.stubsSrcJar}, nil case ".docs.zip": return android.Paths{d.docZip}, nil - case ".api.txt": + case ".api.txt", android.DefaultDistTag: + // This is the default dist path for dist properties that have no tag property. return android.Paths{d.apiFilePath}, nil case ".removed-api.txt": return android.Paths{d.removedApiFilePath}, nil -- cgit v1.2.3-59-g8ed1b