Skip to content

Commit 27120d2

Browse files
committed
#746 Add ignore instruction so reuse doesn't trip
1 parent 3afad42 commit 27120d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

internal-tools/src/main/java/org/firebirdsql/internal/tools/MessageStore.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ final void addSqlState(int code, int number, String sqlState) {
9797
abstract void addSymbol(Facility facility, int number, String symbolName);
9898

9999
final void store(Map<Integer, String> data, Path filePath) throws IOException {
100+
// REUSE-IgnoreStart
100101
try (BufferedWriter writer = Files.newBufferedWriter(filePath, ISO_8859_1)) {
101102
writer.write("# SPDX-FileCopyrightText: 2000-");
102103
writer.write(Year.now().toString());
@@ -108,6 +109,7 @@ final void store(Map<Integer, String> data, Path filePath) throws IOException {
108109
+ "Developer Public License), both are variants of the Mozilla Public License version 1.1");
109110
store(data, writer);
110111
}
112+
// REUSE-IgnoreEnd
111113
}
112114

113115
final void store(Map<Integer, String> map, BufferedWriter writer) throws IOException {

0 commit comments

Comments
 (0)