Comment by Federico klez Culloca on Why does SetN.contains not allow null...
"There are Sets that can contain null values, so this is a legitimate check." yes, and those sets have their own implementation of contains. For example HashSet doesn't have that check.
View ArticleComment by Federico klez Culloca on How can i get the pullrequest approve time?
@Chaosfire I think they need to get that date first, that's the main problem
View ArticleComment by Federico klez Culloca on Spring Boot 2.7.4 / CVE-2016-1000027
Reading the description of the CVE it says "if used for Java deserialization of untrusted data. Depending on how the library is implemented within a product, this issue may or not occur, and...
View ArticleComment by Federico klez Culloca on Why can't I make a single method to add a...
An error 500 would leave a stack trace in your log. What error do you see and where in your code?
View ArticleComment by Federico klez Culloca on okhttp client's callTimeout not respected
Please [edit] your question to include a minimal reproducible example so that readers can run your code to answer your question.
View ArticleComment by Federico klez Culloca on okhttp client's callTimeout not respected
@思远陈 if the code is not complete please provide a minimal reproducible example, not just a vague snippet of code.
View ArticleComment by Federico klez Culloca on Java.io.tmpdir directory doesn't exist
Caused by: java.nio.file.InvalidPathException: Illegal char \<?\> at index 11: C:/Users/H�?ng/AppData/Local/JetBrains/IdeaIC2024.2/log/build-log\\build-log-jul.properties have you checked...
View ArticleComment by Federico klez Culloca on Is it possibile to make a "baby" version...
What do you need to remove that is not already behind an import? Unless you meant "import a whole library in the IDE".
View ArticleComment by Federico klez Culloca on How to build a fully functional Website...
Then you're on the wrong site. Sorry.
View ArticleComment by Federico klez Culloca on using write.table function in R with...
Even supposing a glob could work, how do you expect the program to know in which test directory it has to write? Or do you want to write in all the test folders at the same time? Please clarify your...
View ArticleComment by Federico klez Culloca on how to check multiple variables for 1...
Also, we must assume that none of those getters returns null
View ArticleComment by Federico klez Culloca on method orElseGet(Supplier
It was already pointed out in a comment in your previous post. Didn't you notice?
View ArticleComment by Federico klez Culloca on How to define a BiFunction which only...
You just wrote the signature of a method that returns a BiFunction. What doubts do you have about it? You're asking whether it is a good way of doing what, exactly?
View ArticleComment by Federico klez Culloca on Which methode should i use in this idea?
I think that this topic is off-topic because it's, at its core, a "write some code for me" question and assumes domain knowledge on the part of the readers. Please read How do I ask a good question?
View ArticleComment by Federico klez Culloca on Check if text HTML
Considering that none of that is valid html on its own, I'm assuming you mean it would be valid inside an html page. But plain text would be valid as well, so how would you distinguish that?
View ArticleComment by Federico klez Culloca on How can I print Unicode characters in Java?
Where are you printing/displaying this?
View ArticleComment by Federico klez Culloca on I am working on a Java Project. I have "...
I tried your code and it gave me no such error. Are you sure you saved your code before trying to compile it?
View ArticleComment by Federico klez Culloca on When i add Comparable and Comparator why...
Hello and welcome. "Also i have added Comparator to the TreeSet" not in the code you're showing.
View ArticleComment by Federico klez Culloca on Why does SetN.contains not allow null...
"There are Sets that can contain null values, so this is a legitimate check." yes, and those sets have their own implementation of contains. For example HashSet doesn't have that check.
View ArticleComment by Federico klez Culloca on Java AI based utility to create pattern
Nice idea. But what is your question? And it better not be "how do I do that?" :)
View Article