-
Notifications
You must be signed in to change notification settings - Fork 12
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
Simplify archived/deleted #352
Conversation
# Conflicts: # server/src/main/java/org/spine3/server/aggregate/AggregateStorage.java # server/src/main/java/org/spine3/server/storage/memory/InMemoryAggregateStorage.java # server/src/main/java/org/spine3/server/storage/memory/TenantRecords.java # server/src/test/java/org/spine3/server/aggregate/AggregateStorageVisibilityHandlingShould.java # server/src/test/java/org/spine3/server/storage/RecordStorageShould.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dmdashenkov LGTM. Please consult with @alexander-yevsyukov as well.
@alexander-yevsyukov PTAL |
Codecov Report
@@ Coverage Diff @@
## master #352 +/- ##
============================================
+ Coverage 92.96% 92.99% +0.02%
+ Complexity 2287 2285 -2
============================================
Files 226 226
Lines 7496 7498 +2
Branches 574 570 -4
============================================
+ Hits 6969 6973 +4
Misses 395 395
+ Partials 132 130 -2 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Made methods
markArchived
andmakeDeleted
void
instead ofboolean
to make the operations more fast.