Cleanup: get rid of effective visibility warnings
Original commit: f8a70302ac
This commit is contained in:
committed by
Mikhail Glukhikh
parent
d7a4c9a54d
commit
ef395369bf
@@ -694,7 +694,7 @@ private fun hasKotlinDirtyOrRemovedFiles(
|
||||
return chunk.getTargets().any { !KotlinSourceFileCollector.getRemovedKotlinFiles(dirtyFilesHolder, it).isEmpty() }
|
||||
}
|
||||
|
||||
private open class GeneratedFile(
|
||||
public open class GeneratedFile internal constructor(
|
||||
val target: ModuleBuildTarget,
|
||||
val sourceFiles: Collection<File>,
|
||||
val outputFile: File
|
||||
|
||||
@@ -23,7 +23,7 @@ import org.jetbrains.annotations.TestOnly
|
||||
import org.jetbrains.kotlin.utils.Printer
|
||||
import java.io.File
|
||||
|
||||
abstract class BasicMap<K : Comparable<K>, V>(
|
||||
internal abstract class BasicMap<K : Comparable<K>, V>(
|
||||
storageFile: File,
|
||||
keyDescriptor: KeyDescriptor<K>,
|
||||
valueExternalizer: DataExternalizer<V>
|
||||
@@ -64,7 +64,7 @@ abstract class BasicMap<K : Comparable<K>, V>(
|
||||
protected abstract fun dumpValue(value: V): String
|
||||
}
|
||||
|
||||
public abstract class BasicStringMap<V>(
|
||||
internal abstract class BasicStringMap<V>(
|
||||
storageFile: File,
|
||||
keyDescriptor: KeyDescriptor<String>,
|
||||
valueExternalizer: DataExternalizer<V>
|
||||
|
||||
Reference in New Issue
Block a user