Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@insane guava has that? Isn't that made by Google? No wonder angular (also by google) seems so convoluted at times.
-
insane1178y@Yankeesrule optional class is kind of best shot for finding a matching object in collection. If its missing. It always returns optional object , but it is absent. And method isPresent returns false.
-
@insane FYI that is built into Java 8 now. And integrated with spring data which is very convenient
-
insane1178y@Yankeesrule yup i know. They like to steal all the good ideas. However they Data object still sucks so much.
-
johnDoe32338y@geeknat I dont know if self promotion is allowed on here (I assume not), but why would we use your app if we already have devRant? Redundant at launch, not a very good development strategy.
-
palecio11638yDuring a code review I saw something like this:
Obj myObj = something.getObject();
if(myObj == null) throw new NullPointerException();
You did it again, Junior...
Related Rants
Logic Gem found at work today.
if (value != null) {
return value;
} else {
return null;
}
😂 😂😂😂😂😂
undefined
java
logic
programming