Skip to content

Commit 4caa7f4

Browse files
committed
Update copyright.
1 parent a1bc244 commit 4caa7f4

File tree

212 files changed

+213
-213
lines changed

Some content is hidden

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

212 files changed

+213
-213
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013-2024 Real Logic Limited.
2+
# Copyright 2013-2025 Real Logic Limited.
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.

CONTRIBUTING.md

+1-1

README.md

+1-1

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.
@@ -194,7 +194,7 @@ subprojects {
194194
javadoc {
195195
failOnError false
196196
title = '<h1>Simple Binary Encoding (SBE)</h1>'
197-
options.bottom = '<i>Copyright &#169; 2013-2024 Real Logic Limited. All Rights Reserved.</i>'
197+
options.bottom = '<i>Copyright &#169; 2013-2025 Real Logic Limited. All Rights Reserved.</i>'
198198
options.encoding = 'UTF-8'
199199
options.docEncoding = 'UTF-8'
200200
options.charSet = 'UTF-8'

sbe-benchmarks/src/main/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013-2024 Real Logic Limited.
2+
# Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/CarBench.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/CodecBench.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/MarketDataBench.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/SbeCarCodecBench.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/SbeMarketDataCodecBench.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/benchlet-main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/cpp/benchlet.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/java/uk/co/real_logic/sbe/CarBenchmark.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/java/uk/co/real_logic/sbe/MarketDataBenchmark.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-benchmarks/src/main/java/uk/co/real_logic/sbe/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013-2024 Real Logic Limited.
2+
# Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/cpp/GeneratedStubExample.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/cpp/OtfExample.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/java/uk/co/real_logic/sbe/examples/ExampleTokenListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/java/uk/co/real_logic/sbe/examples/ExampleUsingGeneratedStub.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/java/uk/co/real_logic/sbe/examples/ExampleUsingGeneratedStubExtension.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/java/uk/co/real_logic/sbe/examples/OtfExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-samples/src/main/java/uk/co/real_logic/sbe/examples/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013-2024 Real Logic Limited.
2+
# Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/otf/Encoding.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/otf/IrDecoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/otf/OtfHeaderDecoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/otf/OtfMessageDecoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/cpp/otf/Token.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/golang/otf/encoding.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013-2024 Real Logic Limited.
1+
// Copyright 2013-2025 Real Logic Limited.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

sbe-tool/src/main/java/uk/co/real_logic/sbe/PrimitiveType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/PrimitiveValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/SbeTool.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/ValidationUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/codec/java/GroupOrder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/codec/java/MethodSelector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/codec/java/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/CodeGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/Generators.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/TargetCodeGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/TargetCodeGeneratorLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/c/CGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/c/COutputManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/c/CUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/c/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/common/FieldPrecedenceModel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/common/PrecedenceChecks.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppDtoGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
33
* Copyright (C) 2017 MarketFactory, Inc
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppDtos.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
33
* Copyright 2017 MarketFactory Inc
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/NamespaceOutputManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
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.

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/csharp/CSharp.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
33
* Copyright 2017 MarketFactory Inc
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/csharp/CSharpDtoGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 Real Logic Limited.
2+
* Copyright 2013-2025 Real Logic Limited.
33
* Copyright (C) 2017 MarketFactory, Inc
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)