cheptsov / AdvancedExpressionFolding

https://plugins.jetbrains.com/plugin/9320?pr=idea
140 stars 30 forks source link

Optimizations #128

Open stokito opened 5 years ago

stokito commented 5 years ago

Small micro optimizations mostly to avoid memory allocation:

  1. create StringBuilder with initial capacity
  2. use StringBuilder.append(char) instead of .append(String) or .append(Object) etc
stickler-ci commented 5 years ago

I couldn't find a .stickler.yml file in this repository. I can make one for you, or you can create one by following the documentation.

stickler-ci commented 5 years ago

I couldn't find a .stickler.yml file in this repository. I can make one for you, or you can create one by following the documentation.

stickler-ci commented 5 years ago

I couldn't find a .stickler.yml file in this repository. I can make one for you, or you can create one by following the documentation.

AntoniRokitnicki commented 5 months ago

@stokito I have merged your PR to my fork