Skip to content

Commit 187cef7

Browse files
committed
pr comments
1 parent 62f1e89 commit 187cef7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

app/src/androidTest/java/com/duckduckgo/app/browser/BrowserTabViewModelTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7886,7 +7886,7 @@ class BrowserTabViewModelTest {
78867886
override fun getSubscriptionEventData(): SubscriptionEventData = eventData
78877887
}
78887888

7889-
class FakeContentScopeScriptsSubscriptionEventPluginPoint() : PluginPoint<ContentScopeScriptsSubscriptionEventPlugin> {
7889+
class FakeContentScopeScriptsSubscriptionEventPluginPoint : PluginPoint<ContentScopeScriptsSubscriptionEventPlugin> {
78907890

78917891
private val plugins: MutableList<ContentScopeScriptsSubscriptionEventPlugin> = mutableListOf()
78927892

content-scope-scripts/content-scope-scripts-api/src/main/java/com/duckduckgo/contentscopescripts/api/ContentScopeScriptsSubscriptionEventPlugin.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ package com.duckduckgo.contentscopescripts.api
1919
import com.duckduckgo.js.messaging.api.SubscriptionEventData
2020

2121
/**
22-
* Use this interface to create a new plugin that will provide a ContentScopeScriptsSubscriptionEventPlugin and provide
23-
* [SubscriptionEventData] that can be sent to C-S-S
22+
* Use this interface to create a new plugin that will provide [SubscriptionEventData] that can be sent to C-S-S
2423
*/
2524
interface ContentScopeScriptsSubscriptionEventPlugin {
2625

settings/settings-impl/src/test/java/com/duckduckgo/settings/impl/SettingsWebViewViewModelTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class FakeContentScopeScriptsSubscriptionEventPlugin(
169169
override fun getSubscriptionEventData(): SubscriptionEventData = eventData
170170
}
171171

172-
class FakeContentScopeScriptsSubscriptionEventPluginPoint() : PluginPoint<ContentScopeScriptsSubscriptionEventPlugin> {
172+
class FakeContentScopeScriptsSubscriptionEventPluginPoint : PluginPoint<ContentScopeScriptsSubscriptionEventPlugin> {
173173

174174
private val plugins: MutableList<ContentScopeScriptsSubscriptionEventPlugin> = mutableListOf()
175175

0 commit comments

Comments
 (0)