Skip to content

Commit

Permalink
Sort imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Dec 1, 2023
1 parent 905332d commit 01b6293
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion analyzer/src/main/kotlin/PackageManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

package org.ossreviewtoolkit.analyzer

import java.io.Closeable
import java.io.File
import java.nio.file.FileSystems
import java.nio.file.Path
Expand Down Expand Up @@ -48,7 +49,6 @@ import org.ossreviewtoolkit.utils.common.isSymbolicLink
import org.ossreviewtoolkit.utils.ort.ORT_CONFIG_FILENAME
import org.ossreviewtoolkit.utils.ort.normalizeVcsUrl
import org.ossreviewtoolkit.utils.ort.showStackTrace
import java.io.Closeable

typealias ManagedProjectFiles = Map<PackageManagerFactory, List<File>>
typealias ProjectResults = Map<File, List<ProjectAnalyzerResult>>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

package org.ossreviewtoolkit.plugins.packagemanagers.maven.utils

import java.io.Closeable
import java.io.File
import java.net.URI

Expand Down Expand Up @@ -99,7 +100,6 @@ import org.ossreviewtoolkit.utils.ort.okHttpClient
import org.ossreviewtoolkit.utils.ort.ortDataDirectory
import org.ossreviewtoolkit.utils.ort.showStackTrace
import org.ossreviewtoolkit.utils.spdx.SpdxOperator
import java.io.Closeable

fun Artifact.identifier() = "$groupId:$artifactId:$version"

Expand Down
2 changes: 1 addition & 1 deletion utils/common/src/main/kotlin/DiskCache.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ package org.ossreviewtoolkit.utils.common

import com.jakewharton.disklrucache.DiskLruCache

import java.io.Closeable
import java.io.File
import java.io.IOException

import kotlin.math.pow

import org.apache.logging.log4j.kotlin.logger
import java.io.Closeable

/**
* Wrapper around [DiskLruCache] that adds a workaround for the 64 character key length limit.
Expand Down

0 comments on commit 01b6293

Please sign in to comment.