SonarLint : Java - Strings should not be concatenated using '+' in a loop
Since string is an immutable object every time we add something to the string it is actually not directly added to the string, java internally convert the string to an intermediate object concate the string, and then again change it back to the strin...
hashcodehub.hashnode.dev1 min read