Skip to content

Commit c744870

Browse files
committed
adressing pr comments
1 parent f383c83 commit c744870

File tree

89 files changed

+98
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+98
-102
lines changed

libraries/src/AWS.Lambda.Powertools.Idempotency/Persistence/BasePersistenceStore.cs

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -225,15 +225,13 @@ private DataRecord RetrieveFromCache(string idempotencyKey, DateTimeOffset now)
225225
{
226226
if (!_idempotencyOptions.UseLocalCache)
227227
return null;
228-
229-
if (_cache.TryGet(idempotencyKey, out var record) && record!=null)
228+
229+
if (!_cache.TryGet(idempotencyKey, out var record) || record == null) return null;
230+
if (!record.IsExpired(now))
230231
{
231-
if (!record.IsExpired(now))
232-
{
233-
return record;
234-
}
235-
DeleteFromCache(idempotencyKey);
232+
return record;
236233
}
234+
DeleteFromCache(idempotencyKey);
237235
return null;
238236
}
239237

@@ -262,7 +260,7 @@ private string GetHashedPayload(JsonDocument data)
262260
}
263261

264262
var transformer = JsonTransformer.Parse(_idempotencyOptions.PayloadValidationJmesPath);
265-
JsonDocument result = transformer.Transform(data.RootElement);
263+
var result = transformer.Transform(data.RootElement);
266264
return GenerateHash(result.RootElement);
267265
}
268266

@@ -289,7 +287,7 @@ private string GetHashedIdempotencyKey(JsonDocument data)
289287
if (eventKeyJmesPath != null)
290288
{
291289
var transformer = JsonTransformer.Parse(eventKeyJmesPath);
292-
JsonDocument result = transformer.Transform(node);
290+
var result = transformer.Transform(node);
293291
node = result.RootElement;
294292
}
295293

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/BaseExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/CurrentNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/Expression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/FilterExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/FlattenProjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/FunctionExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/IExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/IdentifierSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/IndexSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/JsonConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/KeyExpressionPair.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/ListProjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/MultiSelectHash.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/MultiSelectList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/ObjectProjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/Projection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/Slice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Expressions/SliceProjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/AbsFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/AvgFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/BaseFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/CeilFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ContainsFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/EndsWithFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/EvaluateMinMax.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/EvaluateMinMaxBy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/EvaluateStartEndWith.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/FloorFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/IFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/JoinFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/KeysFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/LengthFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MapFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MaxByFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MaxFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MergeFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MinByFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/MinFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/NotNullFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ReverseFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/SortByComparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/SortByFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/SortFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/StartsWithFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/SumFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ToArrayFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ToNumberFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ToStringFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/TypeFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/Functions/ValuesFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

libraries/src/AWS.Lambda.Powertools.JMESPath/InternalsVisibleTo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright JsonCons.Net authors. All Rights Reserved.
2+
* Copyright JsonCons.Net authors. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)