Skip to content

Commit 6b76896

Browse files
author
zstan
committed
wip
1 parent ae0028d commit 6b76896

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/binary/api/src/main/java/org/apache/ignite/internal/binary/BinaryWriterExImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@ public BinaryWriterExImpl(
131131
* @throws org.apache.ignite.binary.BinaryObjectException In case of error.
132132
*/
133133
private void marshal(Object obj, boolean enableReplace) throws BinaryObjectException {
134-
String newName = ctx.igniteInstanceName();
135-
String oldName = CommonUtils.setCurrentIgniteName(newName);
134+
//String newName = ctx.igniteInstanceName();
135+
//String oldName = CommonUtils.setCurrentIgniteName(newName);
136136

137137
try {
138138
marshal0(obj, enableReplace);
139139
}
140140
finally {
141-
CommonUtils.restoreOldIgniteName(oldName, newName);
141+
//CommonUtils.restoreOldIgniteName(oldName, newName);
142142
}
143143
}
144144

0 commit comments

Comments
 (0)