Commit a2174089 authored by Andy Hochhaus's avatar Andy Hochhaus

Fix valueWriterFn variable name

parent e7982e40
...@@ -365,7 +365,7 @@ jspb.Map.prototype.serializeBinary = function( ...@@ -365,7 +365,7 @@ jspb.Map.prototype.serializeBinary = function(
valueWriterFn.call(writer, 2, this.wrapEntry_(entry), valueWriterFn.call(writer, 2, this.wrapEntry_(entry),
opt_valueWriterCallback); opt_valueWriterCallback);
} else { } else {
valueWriterFn_.call(writer, 2, entry.value); valueWriterFn.call(writer, 2, entry.value);
} }
writer.endSubMessage(); writer.endSubMessage();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment