Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace StringBuffer with StringBuilder #1756

Open
wants to merge 24 commits into
base: main
Choose a base branch
from

Commits on Jul 23, 2024

  1. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    aa68d56 View commit details
    Browse the repository at this point in the history
  2. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    a4fdd3e View commit details
    Browse the repository at this point in the history
  3. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    57240c3 View commit details
    Browse the repository at this point in the history
  4. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition. Make loop variables "final" to leverage compiler bytecode inlining
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    c9d723a View commit details
    Browse the repository at this point in the history
  5. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition. Make loop variables "final" to leverage compiler bytecode inlining
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    89d82c0 View commit details
    Browse the repository at this point in the history
  6. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngBuilder / StringJoiner / string-composition.
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    7353e58 View commit details
    Browse the repository at this point in the history
  7. avoid using StringBuffer, as they are synchronized, in favour of Stri…

    …ngJoiner with prefix "[", suffix "]" and separator ", "
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    bf8b360 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a829af5 View commit details
    Browse the repository at this point in the history
  9. Replaced StringBuffer with StringBuilder and possibly joining element…

    …s of an iterable with a StringJoiner
    mormao-zg committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    fb31e8c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e2923c6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7d2f662 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b65e70d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    795cca5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b7cd6bc View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    cee74fb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    b923788 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    0989e64 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Replaced StringBuffer with a StringBuilder to avoid synchronization v…

    …ia a new context-aware Appendable
    mormao-zg committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    0034cf4 View commit details
    Browse the repository at this point in the history
  2. Traverse the file system using java.io.File::getParent instead of sub…

    …string by System's file separator, as it can lead to StringIndexOutOfBoundException in case the test folder does not exist
    mormao-zg committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    9bcc8ac View commit details
    Browse the repository at this point in the history
  3. Traverse the file system using java.io.File::getParent instead of sub…

    …string by System's file separator, as it can lead to StringIndexOutOfBoundException in case the test folder does not exist
    mormao-zg committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    a73eb35 View commit details
    Browse the repository at this point in the history
  4. Deleted unused methods

    mormao-zg committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    404a477 View commit details
    Browse the repository at this point in the history
  5. Update codeql.yml

    Correct bad syntax
    stratozero committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    6cbd95a View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    e6e9452 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2663208 View commit details
    Browse the repository at this point in the history