javadoc/droidoc: Don't add .jar files to sourcepath.

javadoc expects directories on the sourcepath, not jar files.
The original commit 88b607994a148f4af5bffee163e39ce8296750c6
in 2009 was already passing the jar files, and every revision
since then seems to have kept this habit through cargo cult.

This CL removes the superfluous jar file arguments from the
sourcepath argument to javadoc.

Test: Treehugger
Bug: 76436487

Change-Id: I3a8503ae089cd6657a698c0552dc194156311849
diff --git a/java/droiddoc.go b/java/droiddoc.go
index c65911c..3d27976 100644
--- a/java/droiddoc.go
+++ b/java/droiddoc.go
@@ -340,8 +340,6 @@
 		j.properties.Local_sourcepaths = append(j.properties.Local_sourcepaths, ".")
 	}
 	j.sourcepaths = android.PathsForModuleSrc(ctx, j.properties.Local_sourcepaths)
-	j.sourcepaths = append(j.sourcepaths, deps.bootClasspath...)
-	j.sourcepaths = append(j.sourcepaths, deps.classpath...)
 
 	return deps
 }