Skip to content

StringBuffer? #10

Description

@Zordid

It's a very well known fact, that one should not use StringBuffers.
StringBuffers have a huge overhead for synchronization purposes that are not needed here.
You should replace those with StringBuilders and even consider not using them at all.

If there are no loops, a simple String a = "Hello, "+ b+ "world!" internally uses a StringBuilder by itself without you worrying about it in the first place...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions