Could be in Optional really anything
I found implemented this code (method where this part of code is used is returning Optional<File>, this part of code had to be added for verification if values are correct and case can be saved): if (!CaseChecker.checkValues(case)) { return Optional.of(new File("FALSE")); } When I asked the person, why he is returning something like this. The… Read More Could be in Optional really anything