removed 'private' modifier for local function

This commit is contained in:
Svetlana Isakova
2012-08-23 14:55:17 +04:00
parent ac39daace6
commit 4457c7b6ba
@@ -211,7 +211,7 @@ class KModel(val context: BindingContext, val config: KDocConfig, val sourceDirs
val normalizedSourceDirs: List<String> =
sourceDirs.map { file -> file.getCanonicalPath()!! }
private fun relativePath(psiFile: PsiFile): String {
fun relativePath(psiFile: PsiFile): String {
val file = File((psiFile.getVirtualFile() as CoreLocalVirtualFile).getPath()).getCanonicalFile()!!
val filePath = file.getPath()!!
for (sourceDirPath in normalizedSourceDirs) {