Bastian / bstats-metrics

The different bStats Metrics classes
https://bStats.org
MIT License
99 stars 114 forks source link

Misprint #109

Closed V0rHaM closed 2 years ago

V0rHaM commented 2 years ago

file Metrics.java изображение

NoahvdAa commented 2 years ago

That is not a typo, that’s the full method signature

V0rHaM commented 2 years ago

And what does 'L' stand for

RivalAzur commented 2 years ago

And what does 'L' stand for

This is used in the JNI (and the JVM internally in general) to indicate a type. Primitives are denoted with a single letter (Z for boolean, I for int, etc), [ indicates an array, and L is used for a class (terminated by a ;).

V0rHaM commented 2 years ago

Thank you for the answer