From 9fa505bda02f14e35f7a075438c2283fae67c395 Mon Sep 17 00:00:00 2001 From: Brandon Fergerson Date: Tue, 3 Jan 2023 22:15:17 +0400 Subject: [PATCH] style: update license header --- boot/src/main/kotlin/spp/probe/SourceProbe.kt | 2 +- boot/src/main/kotlin/spp/probe/SourceProbePluginDefine.kt | 2 +- boot/src/test/kotlin/integration/ProbeBreakpointTest.kt | 2 +- boot/src/test/kotlin/integration/ProbeIntegrationTest.kt | 2 +- boot/src/test/kotlin/integration/ProbeLogTest.kt | 2 +- .../kotlin/integration/breakpoint/BreakpointReturnValueTest.kt | 2 +- boot/src/test/kotlin/integration/breakpoint/CollectionsTest.kt | 2 +- .../integration/breakpoint/MaxCollectionLengthControlTest.kt | 2 +- .../kotlin/integration/breakpoint/MaxObjectDepthControlTest.kt | 2 +- .../kotlin/integration/breakpoint/MaxObjectSizeControlTest.kt | 2 +- boot/src/test/kotlin/integration/log/LogLocationTest.kt | 2 +- boot/src/test/kotlin/integration/log/LogReturnValueTest.kt | 2 +- boot/src/test/kotlin/integration/meter/MeterGaugeTest.kt | 2 +- boot/src/test/kotlin/integration/meter/MeterMethodTimerTest.kt | 2 +- boot/src/test/kotlin/integration/meter/MeterReturnValueTest.kt | 2 +- boot/src/test/kotlin/integration/meter/MeterTagTest.kt | 2 +- common/src/main/kotlin/spp/probe/ClassLoader.kt | 2 +- common/src/main/kotlin/spp/probe/ProbeConfiguration.kt | 2 +- .../src/main/kotlin/spp/probe/remotes/ILiveInstrumentRemote.kt | 2 +- common/src/main/kotlin/spp/probe/util/NopInternalLogger.kt | 2 +- common/src/main/kotlin/spp/probe/util/NopLogDelegateFactory.kt | 2 +- common/src/test/kotlin/spp/probe/ProbeConfigurationTest.kt | 2 +- .../src/main/kotlin/spp/probe/services/LiveInstrumentRemote.kt | 2 +- .../src/main/kotlin/spp/probe/services/common/ContextMap.kt | 2 +- .../main/kotlin/spp/probe/services/common/ContextReceiver.kt | 2 +- .../main/kotlin/spp/probe/services/common/ModelSerializer.kt | 2 +- .../src/main/kotlin/spp/probe/services/common/ProbeMemory.kt | 2 +- .../spp/probe/services/common/model/ActiveLiveInstrument.kt | 2 +- .../main/kotlin/spp/probe/services/common/model/ClassField.kt | 2 +- .../kotlin/spp/probe/services/common/model/ClassMetadata.kt | 2 +- .../main/kotlin/spp/probe/services/common/model/HitThrottle.kt | 2 +- .../kotlin/spp/probe/services/common/model/LocalVariable.kt | 2 +- .../probe/services/common/serialize/CappedTypeAdapterFactory.kt | 2 +- .../common/serialize/RuntimeClassNameTypeAdapterFactory.kt | 2 +- .../spp/probe/services/common/transform/LiveClassVisitor.kt | 2 +- .../spp/probe/services/common/transform/LiveTransformer.kt | 2 +- .../spp/probe/services/common/transform/MetadataCollector.kt | 2 +- .../kotlin/spp/probe/services/error/LiveInstrumentException.kt | 2 +- .../spp/probe/services/instrument/LiveInstrumentApplier.kt | 2 +- .../spp/probe/services/instrument/LiveInstrumentService.kt | 2 +- .../spp/probe/services/instrument/LiveInstrumentTransformer.kt | 2 +- .../kotlin/spp/probe/services/common/model/HitThrottleTest.kt | 2 +- .../probe/services/common/serialize/AbstractSerializeTest.kt | 2 +- .../probe/services/common/serialize/CollectionReferenceTest.kt | 2 +- .../services/common/serialize/CustomMaxCollectionLengthTest.kt | 2 +- .../probe/services/common/serialize/CustomMaxObjectDepthTest.kt | 2 +- .../probe/services/common/serialize/CustomMaxObjectSizeTest.kt | 2 +- .../test/kotlin/spp/probe/services/common/serialize/JsogTest.kt | 2 +- .../probe/services/common/serialize/MaxCollectionLengthTest.kt | 2 +- .../probe/services/common/serialize/MaxDepthReferenceTest.kt | 2 +- .../spp/probe/services/common/serialize/MaxObjectDepthTest.kt | 2 +- .../spp/probe/services/common/serialize/MaxObjectSizeTest.kt | 2 +- .../kotlin/spp/probe/services/common/serialize/PrimitiveTest.kt | 2 +- .../spp/probe/services/common/serialize/UnsafeSerializeTest.kt | 2 +- .../kotlin/spp/probe/services/instrument/ProbeInstrumentTest.kt | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/boot/src/main/kotlin/spp/probe/SourceProbe.kt b/boot/src/main/kotlin/spp/probe/SourceProbe.kt index 028ea6f7..0c7f9fb4 100644 --- a/boot/src/main/kotlin/spp/probe/SourceProbe.kt +++ b/boot/src/main/kotlin/spp/probe/SourceProbe.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/main/kotlin/spp/probe/SourceProbePluginDefine.kt b/boot/src/main/kotlin/spp/probe/SourceProbePluginDefine.kt index c92a187f..0e071e59 100644 --- a/boot/src/main/kotlin/spp/probe/SourceProbePluginDefine.kt +++ b/boot/src/main/kotlin/spp/probe/SourceProbePluginDefine.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/ProbeBreakpointTest.kt b/boot/src/test/kotlin/integration/ProbeBreakpointTest.kt index 1e41b211..4e454ad3 100644 --- a/boot/src/test/kotlin/integration/ProbeBreakpointTest.kt +++ b/boot/src/test/kotlin/integration/ProbeBreakpointTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/ProbeIntegrationTest.kt b/boot/src/test/kotlin/integration/ProbeIntegrationTest.kt index 9e8c8608..b2f37b42 100644 --- a/boot/src/test/kotlin/integration/ProbeIntegrationTest.kt +++ b/boot/src/test/kotlin/integration/ProbeIntegrationTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/ProbeLogTest.kt b/boot/src/test/kotlin/integration/ProbeLogTest.kt index b3ed7502..2a924057 100644 --- a/boot/src/test/kotlin/integration/ProbeLogTest.kt +++ b/boot/src/test/kotlin/integration/ProbeLogTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/breakpoint/BreakpointReturnValueTest.kt b/boot/src/test/kotlin/integration/breakpoint/BreakpointReturnValueTest.kt index 73f3f150..2dfa840d 100644 --- a/boot/src/test/kotlin/integration/breakpoint/BreakpointReturnValueTest.kt +++ b/boot/src/test/kotlin/integration/breakpoint/BreakpointReturnValueTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/breakpoint/CollectionsTest.kt b/boot/src/test/kotlin/integration/breakpoint/CollectionsTest.kt index 83944b53..389d7f67 100644 --- a/boot/src/test/kotlin/integration/breakpoint/CollectionsTest.kt +++ b/boot/src/test/kotlin/integration/breakpoint/CollectionsTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/breakpoint/MaxCollectionLengthControlTest.kt b/boot/src/test/kotlin/integration/breakpoint/MaxCollectionLengthControlTest.kt index eba300ae..d1c78fd8 100644 --- a/boot/src/test/kotlin/integration/breakpoint/MaxCollectionLengthControlTest.kt +++ b/boot/src/test/kotlin/integration/breakpoint/MaxCollectionLengthControlTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/breakpoint/MaxObjectDepthControlTest.kt b/boot/src/test/kotlin/integration/breakpoint/MaxObjectDepthControlTest.kt index d2f69c23..77c83570 100644 --- a/boot/src/test/kotlin/integration/breakpoint/MaxObjectDepthControlTest.kt +++ b/boot/src/test/kotlin/integration/breakpoint/MaxObjectDepthControlTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/breakpoint/MaxObjectSizeControlTest.kt b/boot/src/test/kotlin/integration/breakpoint/MaxObjectSizeControlTest.kt index 88b087cd..b8c3b546 100644 --- a/boot/src/test/kotlin/integration/breakpoint/MaxObjectSizeControlTest.kt +++ b/boot/src/test/kotlin/integration/breakpoint/MaxObjectSizeControlTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/log/LogLocationTest.kt b/boot/src/test/kotlin/integration/log/LogLocationTest.kt index ac0013df..4461bcbc 100644 --- a/boot/src/test/kotlin/integration/log/LogLocationTest.kt +++ b/boot/src/test/kotlin/integration/log/LogLocationTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/log/LogReturnValueTest.kt b/boot/src/test/kotlin/integration/log/LogReturnValueTest.kt index 7db5ad6d..3c120f19 100644 --- a/boot/src/test/kotlin/integration/log/LogReturnValueTest.kt +++ b/boot/src/test/kotlin/integration/log/LogReturnValueTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/meter/MeterGaugeTest.kt b/boot/src/test/kotlin/integration/meter/MeterGaugeTest.kt index e1d85ff5..4d98051f 100644 --- a/boot/src/test/kotlin/integration/meter/MeterGaugeTest.kt +++ b/boot/src/test/kotlin/integration/meter/MeterGaugeTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/meter/MeterMethodTimerTest.kt b/boot/src/test/kotlin/integration/meter/MeterMethodTimerTest.kt index b5adb259..de5dfae4 100644 --- a/boot/src/test/kotlin/integration/meter/MeterMethodTimerTest.kt +++ b/boot/src/test/kotlin/integration/meter/MeterMethodTimerTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/meter/MeterReturnValueTest.kt b/boot/src/test/kotlin/integration/meter/MeterReturnValueTest.kt index a2c4ff6a..316e59a7 100644 --- a/boot/src/test/kotlin/integration/meter/MeterReturnValueTest.kt +++ b/boot/src/test/kotlin/integration/meter/MeterReturnValueTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/boot/src/test/kotlin/integration/meter/MeterTagTest.kt b/boot/src/test/kotlin/integration/meter/MeterTagTest.kt index 7ce27104..f2e32483 100644 --- a/boot/src/test/kotlin/integration/meter/MeterTagTest.kt +++ b/boot/src/test/kotlin/integration/meter/MeterTagTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/main/kotlin/spp/probe/ClassLoader.kt b/common/src/main/kotlin/spp/probe/ClassLoader.kt index c4712bbc..ed382be9 100644 --- a/common/src/main/kotlin/spp/probe/ClassLoader.kt +++ b/common/src/main/kotlin/spp/probe/ClassLoader.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/main/kotlin/spp/probe/ProbeConfiguration.kt b/common/src/main/kotlin/spp/probe/ProbeConfiguration.kt index 37667df4..18f1b557 100644 --- a/common/src/main/kotlin/spp/probe/ProbeConfiguration.kt +++ b/common/src/main/kotlin/spp/probe/ProbeConfiguration.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/main/kotlin/spp/probe/remotes/ILiveInstrumentRemote.kt b/common/src/main/kotlin/spp/probe/remotes/ILiveInstrumentRemote.kt index 5042f304..3ff917a6 100644 --- a/common/src/main/kotlin/spp/probe/remotes/ILiveInstrumentRemote.kt +++ b/common/src/main/kotlin/spp/probe/remotes/ILiveInstrumentRemote.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/main/kotlin/spp/probe/util/NopInternalLogger.kt b/common/src/main/kotlin/spp/probe/util/NopInternalLogger.kt index bd3910e4..e939a53d 100644 --- a/common/src/main/kotlin/spp/probe/util/NopInternalLogger.kt +++ b/common/src/main/kotlin/spp/probe/util/NopInternalLogger.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/main/kotlin/spp/probe/util/NopLogDelegateFactory.kt b/common/src/main/kotlin/spp/probe/util/NopLogDelegateFactory.kt index caaae6d1..caf505e8 100644 --- a/common/src/main/kotlin/spp/probe/util/NopLogDelegateFactory.kt +++ b/common/src/main/kotlin/spp/probe/util/NopLogDelegateFactory.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/common/src/test/kotlin/spp/probe/ProbeConfigurationTest.kt b/common/src/test/kotlin/spp/probe/ProbeConfigurationTest.kt index 98a449c0..a593cf52 100644 --- a/common/src/test/kotlin/spp/probe/ProbeConfigurationTest.kt +++ b/common/src/test/kotlin/spp/probe/ProbeConfigurationTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/LiveInstrumentRemote.kt b/services/src/main/kotlin/spp/probe/services/LiveInstrumentRemote.kt index ef2bb122..2fe65da2 100644 --- a/services/src/main/kotlin/spp/probe/services/LiveInstrumentRemote.kt +++ b/services/src/main/kotlin/spp/probe/services/LiveInstrumentRemote.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/ContextMap.kt b/services/src/main/kotlin/spp/probe/services/common/ContextMap.kt index 3b42041b..af29a6de 100644 --- a/services/src/main/kotlin/spp/probe/services/common/ContextMap.kt +++ b/services/src/main/kotlin/spp/probe/services/common/ContextMap.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/ContextReceiver.kt b/services/src/main/kotlin/spp/probe/services/common/ContextReceiver.kt index e494bd62..ddd4b6d1 100644 --- a/services/src/main/kotlin/spp/probe/services/common/ContextReceiver.kt +++ b/services/src/main/kotlin/spp/probe/services/common/ContextReceiver.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/ModelSerializer.kt b/services/src/main/kotlin/spp/probe/services/common/ModelSerializer.kt index 2f4337b2..4e29ffa2 100644 --- a/services/src/main/kotlin/spp/probe/services/common/ModelSerializer.kt +++ b/services/src/main/kotlin/spp/probe/services/common/ModelSerializer.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/ProbeMemory.kt b/services/src/main/kotlin/spp/probe/services/common/ProbeMemory.kt index 735453e1..5f198221 100644 --- a/services/src/main/kotlin/spp/probe/services/common/ProbeMemory.kt +++ b/services/src/main/kotlin/spp/probe/services/common/ProbeMemory.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/model/ActiveLiveInstrument.kt b/services/src/main/kotlin/spp/probe/services/common/model/ActiveLiveInstrument.kt index ac090245..b8601dd1 100644 --- a/services/src/main/kotlin/spp/probe/services/common/model/ActiveLiveInstrument.kt +++ b/services/src/main/kotlin/spp/probe/services/common/model/ActiveLiveInstrument.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/model/ClassField.kt b/services/src/main/kotlin/spp/probe/services/common/model/ClassField.kt index e9f7bc47..a5d5a71a 100644 --- a/services/src/main/kotlin/spp/probe/services/common/model/ClassField.kt +++ b/services/src/main/kotlin/spp/probe/services/common/model/ClassField.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/model/ClassMetadata.kt b/services/src/main/kotlin/spp/probe/services/common/model/ClassMetadata.kt index 6796a7ac..c47f824a 100644 --- a/services/src/main/kotlin/spp/probe/services/common/model/ClassMetadata.kt +++ b/services/src/main/kotlin/spp/probe/services/common/model/ClassMetadata.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/model/HitThrottle.kt b/services/src/main/kotlin/spp/probe/services/common/model/HitThrottle.kt index 07aced32..e7751226 100644 --- a/services/src/main/kotlin/spp/probe/services/common/model/HitThrottle.kt +++ b/services/src/main/kotlin/spp/probe/services/common/model/HitThrottle.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/model/LocalVariable.kt b/services/src/main/kotlin/spp/probe/services/common/model/LocalVariable.kt index 99e7e36d..ce1cd53e 100644 --- a/services/src/main/kotlin/spp/probe/services/common/model/LocalVariable.kt +++ b/services/src/main/kotlin/spp/probe/services/common/model/LocalVariable.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/serialize/CappedTypeAdapterFactory.kt b/services/src/main/kotlin/spp/probe/services/common/serialize/CappedTypeAdapterFactory.kt index db2e92fb..3e00b08c 100644 --- a/services/src/main/kotlin/spp/probe/services/common/serialize/CappedTypeAdapterFactory.kt +++ b/services/src/main/kotlin/spp/probe/services/common/serialize/CappedTypeAdapterFactory.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/serialize/RuntimeClassNameTypeAdapterFactory.kt b/services/src/main/kotlin/spp/probe/services/common/serialize/RuntimeClassNameTypeAdapterFactory.kt index 4613771a..a9297f30 100644 --- a/services/src/main/kotlin/spp/probe/services/common/serialize/RuntimeClassNameTypeAdapterFactory.kt +++ b/services/src/main/kotlin/spp/probe/services/common/serialize/RuntimeClassNameTypeAdapterFactory.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/transform/LiveClassVisitor.kt b/services/src/main/kotlin/spp/probe/services/common/transform/LiveClassVisitor.kt index 45685309..4fbee203 100644 --- a/services/src/main/kotlin/spp/probe/services/common/transform/LiveClassVisitor.kt +++ b/services/src/main/kotlin/spp/probe/services/common/transform/LiveClassVisitor.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/transform/LiveTransformer.kt b/services/src/main/kotlin/spp/probe/services/common/transform/LiveTransformer.kt index 3c75b624..4134d81a 100644 --- a/services/src/main/kotlin/spp/probe/services/common/transform/LiveTransformer.kt +++ b/services/src/main/kotlin/spp/probe/services/common/transform/LiveTransformer.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/common/transform/MetadataCollector.kt b/services/src/main/kotlin/spp/probe/services/common/transform/MetadataCollector.kt index c1c62f3a..0311c9b2 100644 --- a/services/src/main/kotlin/spp/probe/services/common/transform/MetadataCollector.kt +++ b/services/src/main/kotlin/spp/probe/services/common/transform/MetadataCollector.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/error/LiveInstrumentException.kt b/services/src/main/kotlin/spp/probe/services/error/LiveInstrumentException.kt index a53f33ab..ba700880 100644 --- a/services/src/main/kotlin/spp/probe/services/error/LiveInstrumentException.kt +++ b/services/src/main/kotlin/spp/probe/services/error/LiveInstrumentException.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentApplier.kt b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentApplier.kt index 2c6c6fee..97841a07 100644 --- a/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentApplier.kt +++ b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentApplier.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentService.kt b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentService.kt index 66e0288f..b7ccb22d 100644 --- a/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentService.kt +++ b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentService.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentTransformer.kt b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentTransformer.kt index 312714b8..f7e5c63c 100644 --- a/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentTransformer.kt +++ b/services/src/main/kotlin/spp/probe/services/instrument/LiveInstrumentTransformer.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/model/HitThrottleTest.kt b/services/src/test/kotlin/spp/probe/services/common/model/HitThrottleTest.kt index 2898e238..c9209f72 100644 --- a/services/src/test/kotlin/spp/probe/services/common/model/HitThrottleTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/model/HitThrottleTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/AbstractSerializeTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/AbstractSerializeTest.kt index 4c4869e8..ab9c72ee 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/AbstractSerializeTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/AbstractSerializeTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/CollectionReferenceTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/CollectionReferenceTest.kt index de1fa47e..ccf54871 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/CollectionReferenceTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/CollectionReferenceTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxCollectionLengthTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxCollectionLengthTest.kt index bd059c23..c6c34f26 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxCollectionLengthTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxCollectionLengthTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectDepthTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectDepthTest.kt index 4b397c26..be202aea 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectDepthTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectDepthTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectSizeTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectSizeTest.kt index 9563b06a..60c927fc 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectSizeTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/CustomMaxObjectSizeTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/JsogTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/JsogTest.kt index 27b7da0f..535eddd2 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/JsogTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/JsogTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/MaxCollectionLengthTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxCollectionLengthTest.kt index e92d394b..ea6eb39e 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/MaxCollectionLengthTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxCollectionLengthTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/MaxDepthReferenceTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxDepthReferenceTest.kt index 7e491d26..a95c403d 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/MaxDepthReferenceTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxDepthReferenceTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectDepthTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectDepthTest.kt index 72517f2a..efa606fe 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectDepthTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectDepthTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectSizeTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectSizeTest.kt index b3299b2f..8aee047f 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectSizeTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/MaxObjectSizeTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/PrimitiveTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/PrimitiveTest.kt index 2e821a41..19c4ef15 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/PrimitiveTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/PrimitiveTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/common/serialize/UnsafeSerializeTest.kt b/services/src/test/kotlin/spp/probe/services/common/serialize/UnsafeSerializeTest.kt index b419c7c9..8c61f4fe 100644 --- a/services/src/test/kotlin/spp/probe/services/common/serialize/UnsafeSerializeTest.kt +++ b/services/src/test/kotlin/spp/probe/services/common/serialize/UnsafeSerializeTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * 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/services/src/test/kotlin/spp/probe/services/instrument/ProbeInstrumentTest.kt b/services/src/test/kotlin/spp/probe/services/instrument/ProbeInstrumentTest.kt index d81b618f..9b0b208c 100644 --- a/services/src/test/kotlin/spp/probe/services/instrument/ProbeInstrumentTest.kt +++ b/services/src/test/kotlin/spp/probe/services/instrument/ProbeInstrumentTest.kt @@ -1,6 +1,6 @@ /* * Source++, the continuous feedback platform for developers. - * Copyright (C) 2022 CodeBrig, Inc. + * Copyright (C) 2022-2023 CodeBrig, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.