Skip to content

Commit 3489858

Browse files
committed
Remove dead code and improve docs
1 parent a22c7df commit 3489858

3 files changed

Lines changed: 2 additions & 276 deletions

File tree

src/KurrentDB.Client/Core/Common/ValueExtensions.cs

Lines changed: 0 additions & 274 deletions
This file was deleted.

src/KurrentDB.Client/Core/ValueMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static MapField<string, Value> MapToMapValue(this Dictionary<string, stri
1010
source.Aggregate(
1111
new MapField<string, Value>(),
1212
(seed, entry) => {
13-
seed.Add(entry.Key, new Value { StringValue = entry.Value });
13+
seed.Add(entry.Key, Value.ForString(entry.Value));
1414
return seed;
1515
}
1616
);

src/KurrentDB.Client/Streams/KurrentDBClient.MultiAppend.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public partial class KurrentDBClient {
2727
/// A task that represents the asynchronous operation, with a result of type <see cref="MultiStreamAppendResponse"/>, indicating the outcome of the operation.
2828
/// <para>
2929
/// On success, returns <see cref="MultiStreamAppendResponse"/> containing the successful append results.
30-
/// <see cref="WrongExpectedVersionException"/>, <see cref="AccessDeniedException"/>, <see cref="StreamDeletedException"/>, or <see cref="AppendTransactionMaxSizeExceededException"/>.
30+
/// <see cref="WrongExpectedVersionException"/>, <see cref="AccessDeniedException"/>, <see cref="StreamTombstonedException"/>, <see cref="AppendTransactionMaxSizeExceededException"/>., or <see cref="AppendRecordSizeExceededException"/>.
3131
/// </para>
3232
/// </returns>
3333
/// <exception cref="InvalidOperationException">Thrown if the server does not support multi-stream append functionality (requires server version 25.1 or higher).</exception>

0 commit comments

Comments
 (0)