< prev index next >

src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/ClassSearch.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 28,37 **** --- 28,38 ---- import jdk.tools.jaotc.LoadedClass; import java.util.ArrayList; import java.util.List; import java.util.function.BiConsumer; + import java.io.File; public final class ClassSearch { private final List<SourceProvider> providers = new ArrayList<>(); public void addProvider(SourceProvider provider) {
*** 104,114 **** return found; } public static List<SearchFor> makeList(String type, String argument) { List<SearchFor> list = new ArrayList<>(); ! String[] elements = argument.split(":"); for (String element : elements) { list.add(new SearchFor(element, type)); } return list; } --- 105,115 ---- return found; } public static List<SearchFor> makeList(String type, String argument) { List<SearchFor> list = new ArrayList<>(); ! String[] elements = argument.split(File.pathSeparator); for (String element : elements) { list.add(new SearchFor(element, type)); } return list; }
< prev index next >