Minor: fix some dictionary suggestions
This commit is contained in:
Generated
+6
@@ -3,9 +3,15 @@
|
|||||||
<words>
|
<words>
|
||||||
<w>accessors</w>
|
<w>accessors</w>
|
||||||
<w>goto</w>
|
<w>goto</w>
|
||||||
|
<w>gradle</w>
|
||||||
<w>kdoc</w>
|
<w>kdoc</w>
|
||||||
|
<w>kompiler</w>
|
||||||
|
<w>memoize</w>
|
||||||
<w>memoized</w>
|
<w>memoized</w>
|
||||||
<w>multiline</w>
|
<w>multiline</w>
|
||||||
|
<w>preload</w>
|
||||||
|
<w>preloader</w>
|
||||||
|
<w>preloading</w>
|
||||||
<w>preprocess</w>
|
<w>preprocess</w>
|
||||||
<w>redeclarations</w>
|
<w>redeclarations</w>
|
||||||
<w>subclassed</w>
|
<w>subclassed</w>
|
||||||
|
|||||||
@@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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) {
|
public static ClassLoader getOrCreateClassLoader(KotlinPaths paths, MessageCollector messageCollector) {
|
||||||
ClassLoader answer = ourClassLoaderRef.get();
|
ClassLoader answer = ourClassLoaderRef.get();
|
||||||
if (answer == null) {
|
if (answer == null) {
|
||||||
answer = createClassloader(paths, messageCollector);
|
answer = createClassLoader(paths, messageCollector);
|
||||||
ourClassLoaderRef = new SoftReference<ClassLoader>(answer);
|
ourClassLoaderRef = new SoftReference<ClassLoader>(answer);
|
||||||
}
|
}
|
||||||
return answer;
|
return answer;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static URLClassLoader createClassloader(KotlinPaths paths, MessageCollector messageCollector) {
|
private static URLClassLoader createClassLoader(KotlinPaths paths, MessageCollector messageCollector) {
|
||||||
List<File> jars = kompilerClasspath(paths, messageCollector);
|
List<File> jars = kompilerClasspath(paths, messageCollector);
|
||||||
URL[] urls = new URL[jars.size()];
|
URL[] urls = new URL[jars.size()];
|
||||||
for (int i = 0; i < urls.length; i++) {
|
for (int i = 0; i < urls.length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user