Skip to content

Commit 6399072

Browse files
WIP
1 parent 883301a commit 6399072

3 files changed

Lines changed: 0 additions & 12 deletions

File tree

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,6 @@ private boolean onSend(GridCacheMessage msg, @Nullable UUID destNodeId) throws I
11611161
}
11621162

11631163
/** */
1164-
@SuppressWarnings({"unchecked", "rawtypes"})
11651164
private void prepareMarshalGeneratedCacheObjects(GridCacheMessage msg) throws IgniteCheckedException {
11661165
if (!(msg instanceof GridCacheIdMessage))
11671166
return;

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridNearAtomicUpdateResponse.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -337,12 +337,6 @@ synchronized void addFailedKeys(Collection<KeyCacheObject> keys, Throwable e) {
337337
errs.addFailedKeys(keys, e);
338338
}
339339

340-
/** {@inheritDoc}
341-
* @param ctx*/
342-
@Override public void prepareMarshal(GridCacheSharedContext ctx) throws IgniteCheckedException {
343-
super.prepareMarshal(ctx);
344-
}
345-
346340
/** {@inheritDoc} */
347341
@Override public void finishUnmarshal(GridCacheSharedContext ctx, ClassLoader ldr) throws IgniteCheckedException {
348342
super.finishUnmarshal(ctx, ldr);

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearSingleGetRequest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,11 +249,6 @@ public boolean recovery() {
249249
return (flags & RECOVERY_FLAG_MASK) != 0;
250250
}
251251

252-
/** {@inheritDoc} */
253-
@Override public void prepareMarshal(GridCacheSharedContext<?, ?> ctx) throws IgniteCheckedException {
254-
super.prepareMarshal(ctx);
255-
}
256-
257252
/** {@inheritDoc} */
258253
@Override public void finishUnmarshal(GridCacheSharedContext<?, ?> ctx, ClassLoader ldr) throws IgniteCheckedException {
259254
super.finishUnmarshal(ctx, ldr);

0 commit comments

Comments
 (0)