Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dyu committed May 24, 2020
1 parent 87fb483 commit 3c66964
Showing 1 changed file with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ protected void transfer(Pipe pipe, Input input, Output output)
break;
default:
throw new ProtostuffException(
"The collection was incorrectly " + "serialized.");
"The collection was incorrectly serialized.");
}
}
}
Expand Down Expand Up @@ -627,8 +627,7 @@ protected void transfer(Pipe pipe, Input input, Output output)
output.writeUInt32(2, input.readUInt32(), false);
break;
default:
throw new ProtostuffException("The array was incorrectly "
+ "serialized.");
throw new ProtostuffException("The array was incorrectly serialized.");
}
}
}
Expand Down Expand Up @@ -744,8 +743,7 @@ protected void transfer(Pipe pipe, Input input, Output output)
output.writeObject(number, pipe, ENTRY_PIPE_SCHEMA, true);
break;
default:
throw new ProtostuffException("The map was incorrectly "
+ "serialized.");
throw new ProtostuffException("The map was incorrectly serialized.");
}
}
}
Expand Down Expand Up @@ -834,7 +832,7 @@ public void mergeFrom(Input input, Entry<Object, Object> message)
if (key != null)
{
throw new ProtostuffException(
"The map was incorrectly " + "serialized.");
"The map was incorrectly serialized.");
}
key = input.mergeObject(entry, DYNAMIC_VALUE_SCHEMA);
if (entry != key)
Expand All @@ -853,7 +851,7 @@ public void mergeFrom(Input input, Entry<Object, Object> message)
if (value != null)
{
throw new ProtostuffException(
"The map was incorrectly " + "serialized.");
"The map was incorrectly serialized.");
}
value = input.mergeObject(entry, DYNAMIC_VALUE_SCHEMA);
if (entry != value)
Expand All @@ -869,8 +867,7 @@ public void mergeFrom(Input input, Entry<Object, Object> message)
}
break;
default:
throw new ProtostuffException("The map was incorrectly "
+ "serialized.");
throw new ProtostuffException("The map was incorrectly serialized.");
}
}
}
Expand Down Expand Up @@ -911,8 +908,7 @@ protected void transfer(Pipe pipe, Input input, Output output)
false);
break;
default:
throw new ProtostuffException("The map was incorrectly "
+ "serialized.");
throw new ProtostuffException("The map was incorrectly serialized.");
}
}
}
Expand Down

0 comments on commit 3c66964

Please sign in to comment.