You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
17 of the documented declarations on this branch are private,
private[x], protected[x], or nested inside such a scope. scaladoc's
isHiddenByVisibility drops every one of them unless -private is passed,
and no build in this repository passes it, so none of this reaches the
published API pages. This commit removes them, 113 comment line(s)
across 3 file(s), leaving only documentation the API pages render.
Nothing is lost: scaladoc-missing-docs-runtime-internal restores this tree exactly.
Copy file name to clipboardExpand all lines: library/src/scala/runtime/MethodCache.scala
-53Lines changed: 0 additions & 53 deletions
Original file line number
Diff line number
Diff line change
@@ -38,35 +38,13 @@ private[scala] sealed abstract class MethodCache {
38
38
* @return the cached `JMethod` compatible with `forReceiver`, or `null` if no such method is cached (in which case the caller should look up the method and `add` it)
39
39
*/
40
40
deffind(forReceiver: JClass[?]):JMethod|Null
41
-
/** Returns a cache that also resolves `forMethod` for receiver class
42
-
* `forReceiver`, to replace this cache at the call point. This cache
43
-
* itself is not mutated: implementations return either a new cache
44
-
* extending this one or this cache unchanged.
45
-
*
46
-
* @paramforReceiver the runtime `Class` of the receiver object the method was looked up for
47
-
* @paramforMethod the method resolved for `forReceiver`
48
-
* @return the cache to use for subsequent look-ups at this call point
0 commit comments