File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/binary/api/src/main/java/org/apache/ignite/internal/binary Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments