From 2e2061d9b6fd937807ba69bd09ec9733dc1b93fc Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Sat, 22 Jun 2013 14:59:57 +0400 Subject: [PATCH] Clarified comment. --- compiler/backend/src/org/jetbrains/jet/codegen/CodegenUtil.java | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/backend/src/org/jetbrains/jet/codegen/CodegenUtil.java b/compiler/backend/src/org/jetbrains/jet/codegen/CodegenUtil.java index 4d1ca0eb5eb..740e2574d9e 100644 --- a/compiler/backend/src/org/jetbrains/jet/codegen/CodegenUtil.java +++ b/compiler/backend/src/org/jetbrains/jet/codegen/CodegenUtil.java @@ -292,6 +292,7 @@ public class CodegenUtil { static int getPathHashCode(@NotNull PsiFile file) { // Conversion to system-dependent name seems to be unnecessary, but it's hard to check now: // it was introduced when fixing KT-2839, which appeared again (KT-3639). + // If you try to remove it, run tests on Windows. return FileUtil.toSystemDependentName(file.getVirtualFile().getPath()).hashCode(); } }