-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix creating a EncodingManagerImpl in IntelliJ 2024.3 for the tests.
- Loading branch information
Showing
8 changed files
with
49 additions
and
103 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
...ntellij-compat/src/243/compat/com/intellij/compat/openapi/vfs/encoding/EncodingManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright (C) 2024 Reece H. Dunn. SPDX-License-Identifier: Apache-2.0 | ||
package com.intellij.compat.openapi.vfs.encoding | ||
|
||
import com.intellij.openapi.vfs.encoding.EncodingManager | ||
import com.intellij.openapi.vfs.encoding.EncodingManagerImpl | ||
import kotlinx.coroutines.CoroutineScope | ||
|
||
@Suppress("FunctionName") | ||
fun EncodingManagerImpl(coroutineScope: CoroutineScope): EncodingManager = EncodingManagerImpl() |
9 changes: 9 additions & 0 deletions
9
...ntellij-compat/src/243/native/com/intellij/compat/openapi/vfs/encoding/EncodingManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright (C) 2024 Reece H. Dunn. SPDX-License-Identifier: Apache-2.0 | ||
package com.intellij.compat.openapi.vfs.encoding | ||
|
||
import com.intellij.openapi.vfs.encoding.EncodingManager | ||
import com.intellij.openapi.vfs.encoding.EncodingManagerImpl | ||
import kotlinx.coroutines.CoroutineScope | ||
|
||
@Suppress("FunctionName", "UnstableApiUsage") | ||
fun EncodingManagerImpl(coroutineScope: CoroutineScope): EncodingManager = EncodingManagerImpl(coroutineScope) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters