Skip to content

Commit d12fde5

Browse files
committed
Update copyright year
Signed-off-by: Matteo Cafasso <[email protected]>
1 parent b88428e commit d12fde5

8 files changed

+9
-9
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) 2017-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, 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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.PolicyEvent do

lib/rabbitmq_message_deduplication/rabbit_message_deduplication_queue.ex

+2-2
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-2023, Matteo Cafasso.
5+
# Copyright (c) 2017-2024, Matteo Cafasso.
66
# All rights reserved.
77

88
defmodule RabbitMQMessageDeduplication.Queue do
@@ -27,10 +27,10 @@ defmodule RabbitMQMessageDeduplication.Queue do
2727
require RabbitMQMessageDeduplication.Cache
2828
require RabbitMQMessageDeduplication.Common
2929

30+
alias :mc, as: MC
3031
alias :amqqueue, as: AMQQueue
3132
alias :rabbit_log, as: RabbitLog
3233
alias :rabbit_amqqueue, as: RabbitQueue
33-
alias :mc, as: MC
3434
alias RabbitMQMessageDeduplication.Common, as: Common
3535
alias RabbitMQMessageDeduplication.Cache, as: Cache
3636
alias RabbitMQMessageDeduplication.CacheManager, as: CacheManager

0 commit comments

Comments
 (0)