From 17debfd84c98218c0697f98ea236b206b9e47718 Mon Sep 17 00:00:00 2001 From: Volkan Yazici Date: Fri, 10 Jan 2020 21:23:45 +0100 Subject: [PATCH] Update copyright year. --- README.md | 2 +- src/main/java/com/vlkan/rfos/ByteCountingOutputStream.java | 2 +- src/main/java/com/vlkan/rfos/Clock.java | 2 +- src/main/java/com/vlkan/rfos/LoggingRotationCallback.java | 2 +- src/main/java/com/vlkan/rfos/Rotatable.java | 2 +- src/main/java/com/vlkan/rfos/RotatingFileOutputStream.java | 2 +- src/main/java/com/vlkan/rfos/RotatingFilePattern.java | 2 +- src/main/java/com/vlkan/rfos/RotatingFilePatternException.java | 2 +- src/main/java/com/vlkan/rfos/RotationCallback.java | 2 +- src/main/java/com/vlkan/rfos/RotationConfig.java | 2 +- src/main/java/com/vlkan/rfos/SystemClock.java | 2 +- src/main/java/com/vlkan/rfos/policy/DailyRotationPolicy.java | 2 +- src/main/java/com/vlkan/rfos/policy/RotationPolicy.java | 2 +- .../java/com/vlkan/rfos/policy/SizeBasedRotationPolicy.java | 2 +- .../java/com/vlkan/rfos/policy/TimeBasedRotationPolicy.java | 2 +- src/main/java/com/vlkan/rfos/policy/WeeklyRotationPolicy.java | 2 +- src/test/java/com/vlkan/rfos/ByteCountingOutputStreamTest.java | 2 +- src/test/java/com/vlkan/rfos/RotatingFileOutputStreamTest.java | 2 +- src/test/java/com/vlkan/rfos/RotatingFilePatternTest.java | 2 +- src/test/java/com/vlkan/rfos/SystemClockTest.java | 2 +- src/test/java/com/vlkan/rfos/UtcHelper.java | 2 +- .../java/com/vlkan/rfos/policy/DailyRotationPolicyTest.java | 2 +- .../java/com/vlkan/rfos/policy/SizeBasedRotationPolicyTest.java | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 3252850..812486b 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ methods. # License -Copyright © 2017-2019 [Volkan Yazıcı](https://vlkan.com/) +Copyright © 2018-2020 [Volkan Yazıcı](https://vlkan.com/) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/ByteCountingOutputStream.java b/src/main/java/com/vlkan/rfos/ByteCountingOutputStream.java index 7225dee..eb8d89b 100644 --- a/src/main/java/com/vlkan/rfos/ByteCountingOutputStream.java +++ b/src/main/java/com/vlkan/rfos/ByteCountingOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/Clock.java b/src/main/java/com/vlkan/rfos/Clock.java index 13cc986..b50fc85 100644 --- a/src/main/java/com/vlkan/rfos/Clock.java +++ b/src/main/java/com/vlkan/rfos/Clock.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/LoggingRotationCallback.java b/src/main/java/com/vlkan/rfos/LoggingRotationCallback.java index edfa360..83c05b9 100644 --- a/src/main/java/com/vlkan/rfos/LoggingRotationCallback.java +++ b/src/main/java/com/vlkan/rfos/LoggingRotationCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/Rotatable.java b/src/main/java/com/vlkan/rfos/Rotatable.java index c80178e..ead0f8a 100644 --- a/src/main/java/com/vlkan/rfos/Rotatable.java +++ b/src/main/java/com/vlkan/rfos/Rotatable.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/RotatingFileOutputStream.java b/src/main/java/com/vlkan/rfos/RotatingFileOutputStream.java index 9622e92..e9fc2d0 100644 --- a/src/main/java/com/vlkan/rfos/RotatingFileOutputStream.java +++ b/src/main/java/com/vlkan/rfos/RotatingFileOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/RotatingFilePattern.java b/src/main/java/com/vlkan/rfos/RotatingFilePattern.java index ef72239..f03e593 100644 --- a/src/main/java/com/vlkan/rfos/RotatingFilePattern.java +++ b/src/main/java/com/vlkan/rfos/RotatingFilePattern.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/RotatingFilePatternException.java b/src/main/java/com/vlkan/rfos/RotatingFilePatternException.java index 1f83f4c..1eb9c82 100644 --- a/src/main/java/com/vlkan/rfos/RotatingFilePatternException.java +++ b/src/main/java/com/vlkan/rfos/RotatingFilePatternException.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/RotationCallback.java b/src/main/java/com/vlkan/rfos/RotationCallback.java index 5208ca1..10813c1 100644 --- a/src/main/java/com/vlkan/rfos/RotationCallback.java +++ b/src/main/java/com/vlkan/rfos/RotationCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/RotationConfig.java b/src/main/java/com/vlkan/rfos/RotationConfig.java index a2d1240..60ac282 100644 --- a/src/main/java/com/vlkan/rfos/RotationConfig.java +++ b/src/main/java/com/vlkan/rfos/RotationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/SystemClock.java b/src/main/java/com/vlkan/rfos/SystemClock.java index ec12287..0947faf 100644 --- a/src/main/java/com/vlkan/rfos/SystemClock.java +++ b/src/main/java/com/vlkan/rfos/SystemClock.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/policy/DailyRotationPolicy.java b/src/main/java/com/vlkan/rfos/policy/DailyRotationPolicy.java index c42597a..b5759bb 100644 --- a/src/main/java/com/vlkan/rfos/policy/DailyRotationPolicy.java +++ b/src/main/java/com/vlkan/rfos/policy/DailyRotationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/policy/RotationPolicy.java b/src/main/java/com/vlkan/rfos/policy/RotationPolicy.java index 3303e9c..08495f5 100644 --- a/src/main/java/com/vlkan/rfos/policy/RotationPolicy.java +++ b/src/main/java/com/vlkan/rfos/policy/RotationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/policy/SizeBasedRotationPolicy.java b/src/main/java/com/vlkan/rfos/policy/SizeBasedRotationPolicy.java index d998c31..dfed957 100644 --- a/src/main/java/com/vlkan/rfos/policy/SizeBasedRotationPolicy.java +++ b/src/main/java/com/vlkan/rfos/policy/SizeBasedRotationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/policy/TimeBasedRotationPolicy.java b/src/main/java/com/vlkan/rfos/policy/TimeBasedRotationPolicy.java index 203f526..3a897c3 100644 --- a/src/main/java/com/vlkan/rfos/policy/TimeBasedRotationPolicy.java +++ b/src/main/java/com/vlkan/rfos/policy/TimeBasedRotationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/vlkan/rfos/policy/WeeklyRotationPolicy.java b/src/main/java/com/vlkan/rfos/policy/WeeklyRotationPolicy.java index dd9e2d5..d7ac247 100644 --- a/src/main/java/com/vlkan/rfos/policy/WeeklyRotationPolicy.java +++ b/src/main/java/com/vlkan/rfos/policy/WeeklyRotationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/ByteCountingOutputStreamTest.java b/src/test/java/com/vlkan/rfos/ByteCountingOutputStreamTest.java index ed22852..19e03df 100644 --- a/src/test/java/com/vlkan/rfos/ByteCountingOutputStreamTest.java +++ b/src/test/java/com/vlkan/rfos/ByteCountingOutputStreamTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/RotatingFileOutputStreamTest.java b/src/test/java/com/vlkan/rfos/RotatingFileOutputStreamTest.java index 518c714..84472f4 100644 --- a/src/test/java/com/vlkan/rfos/RotatingFileOutputStreamTest.java +++ b/src/test/java/com/vlkan/rfos/RotatingFileOutputStreamTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/RotatingFilePatternTest.java b/src/test/java/com/vlkan/rfos/RotatingFilePatternTest.java index 560cb77..ae07a27 100644 --- a/src/test/java/com/vlkan/rfos/RotatingFilePatternTest.java +++ b/src/test/java/com/vlkan/rfos/RotatingFilePatternTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/SystemClockTest.java b/src/test/java/com/vlkan/rfos/SystemClockTest.java index 6e6a372..8a1b4ae 100644 --- a/src/test/java/com/vlkan/rfos/SystemClockTest.java +++ b/src/test/java/com/vlkan/rfos/SystemClockTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/UtcHelper.java b/src/test/java/com/vlkan/rfos/UtcHelper.java index fc07c99..ac842c5 100644 --- a/src/test/java/com/vlkan/rfos/UtcHelper.java +++ b/src/test/java/com/vlkan/rfos/UtcHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/policy/DailyRotationPolicyTest.java b/src/test/java/com/vlkan/rfos/policy/DailyRotationPolicyTest.java index e691fea..ed304db 100644 --- a/src/test/java/com/vlkan/rfos/policy/DailyRotationPolicyTest.java +++ b/src/test/java/com/vlkan/rfos/policy/DailyRotationPolicyTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/vlkan/rfos/policy/SizeBasedRotationPolicyTest.java b/src/test/java/com/vlkan/rfos/policy/SizeBasedRotationPolicyTest.java index 6c53941..64852a6 100644 --- a/src/test/java/com/vlkan/rfos/policy/SizeBasedRotationPolicyTest.java +++ b/src/test/java/com/vlkan/rfos/policy/SizeBasedRotationPolicyTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Volkan Yazıcı + * Copyright 2018-2020 Volkan Yazıcı * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.