What is this Java syntax? → CLASS.<PARAMETER_TYPE>STATIC_FUNCTION_NAME()
I was reading FirebaseUI library source code when I stumbled upon syntax I hadn’t seen before. It was first folded by IntelliJ IDEA: Then I had to click it to unfold: What is this line? setScopes(Collections.<String>emptyList()); Is it equal to this? setScopes(Collections.emptyList<String>()); If it is, why was it written that way? Is it the same… Read More What is this Java syntax? → CLASS.<PARAMETER_TYPE>STATIC_FUNCTION_NAME()