style: update & resolve doc block warnings (#1774)

* style: resolve throw symbols (except InvalidArgumentException)
* style: resolve unknown symbol & reduce indention for PluginEntry
* fix: define IllegalArgumentException not InvalidArgumentException
This commit is contained in:
エリス
2025-01-30 18:17:22 +09:00
committed by GitHub
parent e012478537
commit eb0f002112
30 changed files with 252 additions and 222 deletions
@@ -66,7 +66,7 @@ public class StandardActivityTest {
@Test
public void webViewCheck() {
StandardActivity activity = (StandardActivity) mActivityRule.getActivity();
//Fish the webview out of the mostly locked down Activity using the Android SDK
// Fish the WebView out of the mostly locked down Activity using the Android SDK
View view = activity.getWindow().getCurrentFocus();
assertEquals(SystemWebView.class, view.getClass());
}
@@ -44,7 +44,7 @@ public class EmbeddedWebViewActivity extends AppCompatActivity {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Set up the webview
// Set up the WebView
ConfigXmlParser parser = new ConfigXmlParser();
parser.parse(this);