Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deprecated API usage #224

Merged
merged 7 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
package com.jfrog.conan.clion.conan.extensions

import com.intellij.openapi.diagnostic.thisLogger
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.launch
import java.io.File
import java.net.URL
import java.net.URI

fun File.downloadFromUrl(url: String) {
val targetFile = this

try {
val fileUrl = URL(url)
val fileUrl = URI(url).toURL()
fileUrl.openStream().use { input ->
targetFile.outputStream().use { output ->
input.copyTo(output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ object ConanExecutableChooserDescriptor : FileChooserDescriptor(true, true, fals
withFileFilter { it.isConanExecutable }
withTitle("Select Conan executable")
}

AbrilRBS marked this conversation as resolved.
Show resolved Hide resolved
override fun isFileSelectable(file: VirtualFile?): Boolean {
return super.isFileSelectable(file) && file != null && !file.isDirectory
}
}

val VirtualFile.isConanExecutable: Boolean
Expand Down
Loading