Skip to content

Commit b167905

Browse files
committed
Update copyright years
Signed-off-by: Matteo Cafasso <[email protected]>
1 parent f5bdbbd commit b167905

13 files changed

+13
-13
lines changed

lib/rabbitmq_message_deduplication.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2019-2020, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication do

lib/rabbitmq_message_deduplication/cache.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Cache do

lib/rabbitmq_message_deduplication/cache_manager.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.CacheManager do

lib/rabbitmq_message_deduplication/common.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2018, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Common do

lib/rabbitmq_message_deduplication/rabbit_message_deduplication_exchange.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2018, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Exchange do

lib/rabbitmq_message_deduplication/rabbit_message_deduplication_policies.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Policies do

lib/rabbitmq_message_deduplication/rabbit_message_deduplication_policy_event.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.PolicyEvent do

lib/rabbitmq_message_deduplication/rabbit_message_deduplication_queue.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Queue do

test/cache_manager_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.CacheManager.Test do

test/cache_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Cache.Test do

test/exchange_SUITE.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% License, v. 2.0. If a copy of the MPL was not distributed with this
33
% file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
%
5-
% Copyright (c) 2017-2018, Matteo Cafasso.
5+
% Copyright (c) 2017-2022, Matteo Cafasso.
66
% All rights reserved.
77

88
-module(exchange_SUITE).

test/policies_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2017-2021, Matteo Cafasso.
5+
# Copyright (c) 2017-2022, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Policies.Test do

test/queue_SUITE.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% License, v. 2.0. If a copy of the MPL was not distributed with this
33
% file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
%
5-
% Copyright (c) 2017-2018, Matteo Cafasso.
5+
% Copyright (c) 2017-2022, Matteo Cafasso.
66
% All rights reserved.
77

88
-module(queue_SUITE).

0 commit comments

Comments
 (0)