pdfbox icon indicating copy to clipboard operation
pdfbox copied to clipboard

decompose conditional refactoring

Open Vivek504 opened this issue 2 years ago • 0 comments

Decompose Conditional Refactoring

Location of the class: org.apache.pdfbox.io.MemoryUsageSetting

Reason: Complex Conditional - The conditional expression locUseMainMemory && (locMaxStorageBytes > -1) && ((locMaxMainMemoryBytes == -1) || (locMaxMainMemoryBytes > locMaxStorageBytes)) is complex.

Logic of the refactoring: Replaced the conditional logic with newly created methods.

Vivek504 avatar Nov 18 '23 19:11 Vivek504