Skip to content

Commit 146e33c

Browse files
committed
pr comments
1 parent 62f1e89 commit 146e33c

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
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

content-scope-scripts/content-scope-scripts-impl/src/main/java/com/duckduckgo/contentscopescripts/impl/ContentScopeScriptsSubscriptionEventPluginPoint.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022 DuckDuckGo
2+
* Copyright (c) 2025 DuckDuckGo
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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)