diff --git a/.idea/dictionaries/Nikolay_Krasko.xml b/.idea/dictionaries/Nikolay_Krasko.xml index 6ccd21192dd..ad612d5d66e 100644 --- a/.idea/dictionaries/Nikolay_Krasko.xml +++ b/.idea/dictionaries/Nikolay_Krasko.xml @@ -3,9 +3,15 @@ accessors goto + gradle kdoc + kompiler + memoize memoized multiline + preload + preloader + preloading preprocess redeclarations subclassed diff --git a/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java b/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java index 8e20f0a5a6d..a648bd68cc6 100644 --- a/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java +++ b/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2010-2013 JetBrains s.r.o. + * Copyright 2010-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,13 +80,13 @@ public class CompilerRunnerUtil { public static ClassLoader getOrCreateClassLoader(KotlinPaths paths, MessageCollector messageCollector) { ClassLoader answer = ourClassLoaderRef.get(); if (answer == null) { - answer = createClassloader(paths, messageCollector); + answer = createClassLoader(paths, messageCollector); ourClassLoaderRef = new SoftReference(answer); } return answer; } - private static URLClassLoader createClassloader(KotlinPaths paths, MessageCollector messageCollector) { + private static URLClassLoader createClassLoader(KotlinPaths paths, MessageCollector messageCollector) { List jars = kompilerClasspath(paths, messageCollector); URL[] urls = new URL[jars.size()]; for (int i = 0; i < urls.length; i++) {