Skip to content

Commit

Permalink
ignite-5556 Fixed return type for SizeLongJob
Browse files Browse the repository at this point in the history
  • Loading branch information
sboikov committed Jun 20, 2017
1 parent 19a78a9 commit f58b222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5368,7 +5368,7 @@ private SizeLongJob(String cacheName, AffinityTopologyVersion topVer, CachePeekM
/** {@inheritDoc} */
@Nullable @Override public Object localExecute(@Nullable IgniteInternalCache cache) {
if (cache == null)
return 0;
return 0L;

try {
return cache.localSizeLong(peekModes);
Expand Down

0 comments on commit f58b222

Please sign in to comment.