Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94d02749 authored by Paul Duffin's avatar Paul Duffin
Browse files

Replace {@removed} with @removed

In most places the `@removed` doctag is treated as a block tag on its
own line. However, there are a few places where it is treated as an
inline doctag, i.e. `{@removed}`. Dealing with both types increases the
complexity of Metalava and makes it slightly slower.

This change replaces the inline doctag form `{@removed}` with a block
tag.

Flag: EXEMPT replacing {@removed} with @removed does not change API or behavior
Bug: 429965593
Test: m checkapi
Change-Id: I62c9d2710265eec1c55ba964991eeeb15816e870
parent 531f2156
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1085,7 +1085,7 @@ public class MockPackageManager extends PackageManager {
        throw new UnsupportedOperationException();
    }

    /** {@removed} */
    /** @removed */
    @Deprecated
    public String getDefaultBrowserPackageName(int userId) {
        throw new UnsupportedOperationException();
@@ -1097,7 +1097,7 @@ public class MockPackageManager extends PackageManager {
        throw new UnsupportedOperationException();
    }

    /** {@removed} */
    /** @removed */
    @Deprecated
    public boolean setDefaultBrowserPackageName(String packageName, int userId) {
        throw new UnsupportedOperationException();