eclipse / ecf

ECF project repository
6 stars 14 forks source link

Use local variable instead of a field for contentCompressionEnabled #71

Closed laeubi closed 10 months ago

laeubi commented 11 months ago

Using a field for contentCompressionEnabled is not required as all data is only accessed locally.

Using a local variable makes the code better readable and prevents any problems with possibly concurrent access. Beside that it should be q tiny bit more performant.