Simone
04/04/2022, 4:56 PMprivate static Data getdata(String url) {
if (url != null) {
String path = null;
try {
path = new URL(url).getPath().substring(1);
} catch (MalformedURLException e) {
e.printStackTrace();
}
if (path != null) {
if (path.indexOf('/') == -1) {
return getData(url, "User");
} else {
if (path.contains("music")) {
return getData(url, "Music");
} else if (path.contains("video")) {
return getData(url, "Video");
} else if (path.contains("tag")) {
return getData(url, "Tag");
}
}
}
}
return null;
}
cfsimplicity
08/11/2022, 10:05 AMbuilder().open()
method to be called? https://github.com/cfsimplicity/spreadsheet-cfml/issues/297salted
10/16/2022, 4:01 AMsalted
10/16/2022, 4:02 AMsalted
10/16/2022, 4:03 AMbdw429s
11/03/2022, 7:53 PMbdw429s
11/03/2022, 7:53 PMbdw429s
11/03/2022, 7:56 PMjava.lang.ProcessHandleImpl$Info
except that class appears to only exist on JDK 11+ and I need this test to run on Java 8 at the momentbdw429s
11/03/2022, 8:09 PMmtbrown
11/03/2022, 10:46 PMprivate
. I'm not sure if that matters. But some of the Collections API appears to have a non-private inner class for a Spliterator
. They're static
, so not sure if that matters either. For example, java.util.ArrayList
has one called ArrayListSpliterator
.Chris Tierney
02/20/2023, 11:40 PMChris Tierney
02/20/2023, 11:40 PM