[#14] add lombok and refactor exceptions. #15
No reviewers
Labels
No labels
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-sdk-java#15
Loading…
Reference in a new issue
No description provided.
Delete branch "orikik/frostfs-sdk-java:feature/lombok_and_exceptions"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Also provide validator
@ -36,3 +36,3 @@
// Create container
var placementPolicy = new PlacementPolicy(true, new Replica[]{new Replica(1)});
var placementPolicy = new PlacementPolicy(new Replica[]{new Replica(1)}, true);
best practice is to use Boolean.TRUE?
From a performance perspective this will only make things worse because the primitive will suffice. But for ease of reading, yes, I will correct it.
https://www.linkedin.com/pulse/low-latency-optimisation-jvmpart-2-jvm-optimisations-steve-ball/