mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
fix incorrect package
GitOrigin-RevId: 069d9b41fa78e7e4165ebc5f3e1e525cd7d4e338
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d1d818e505
commit
78b3e2b2cb
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.util.indexing.roots.kind
|
||||
|
||||
import com.intellij.openapi.module.Module
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
@ApiStatus.Experimental
|
||||
package com.intellij.util.indexing.roots.origin;
|
||||
package com.intellij.util.indexing.roots.kind;
|
||||
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.util.indexing.roots.origin
|
||||
|
||||
import com.intellij.openapi.module.Module
|
||||
@@ -9,16 +9,16 @@ import com.intellij.openapi.vfs.pointers.VirtualFilePointer
|
||||
import com.intellij.util.indexing.IndexableSetContributor
|
||||
import com.intellij.util.indexing.roots.kind.*
|
||||
|
||||
data class ModuleRootOriginImpl(override val module: Module,
|
||||
override val roots: List<VirtualFile>) : ModuleRootOrigin
|
||||
internal data class ModuleRootOriginImpl(override val module: Module,
|
||||
override val roots: List<VirtualFile>) : ModuleRootOrigin
|
||||
|
||||
data class LibraryOriginImpl(override val classRootUrls: List<VirtualFilePointer>,
|
||||
override val sourceRootUrls: List<VirtualFilePointer>) : LibraryOrigin
|
||||
internal data class LibraryOriginImpl(override val classRootUrls: List<VirtualFilePointer>,
|
||||
override val sourceRootUrls: List<VirtualFilePointer>) : LibraryOrigin
|
||||
|
||||
data class SyntheticLibraryOriginImpl(override val syntheticLibrary: SyntheticLibrary) : SyntheticLibraryOrigin
|
||||
internal data class SyntheticLibraryOriginImpl(override val syntheticLibrary: SyntheticLibrary) : SyntheticLibraryOrigin
|
||||
|
||||
data class SdkOriginImpl(override val sdk: Sdk) : SdkOrigin
|
||||
internal data class SdkOriginImpl(override val sdk: Sdk) : SdkOrigin
|
||||
|
||||
data class IndexableSetContributorOriginImpl(override val indexableSetContributor: IndexableSetContributor) : IndexableSetContributorOrigin
|
||||
internal data class IndexableSetContributorOriginImpl(override val indexableSetContributor: IndexableSetContributor) : IndexableSetContributorOrigin
|
||||
|
||||
data class ProjectFileOrDirOriginImpl(override val fileOrDir: VirtualFile) : ProjectFileOrDirOrigin
|
||||
internal data class ProjectFileOrDirOriginImpl(override val fileOrDir: VirtualFile) : ProjectFileOrDirOrigin
|
||||
Reference in New Issue
Block a user