Skip to content

Commit

Permalink
Use SPDX license header.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Jun 14, 2024
1 parent eeef7ee commit b7370a7
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 76 deletions.
1 change: 0 additions & 1 deletion dev/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<!-- File must start with the C Thing copyright header -->
<module name="RegexpHeader">
<property name="headerFile" value="${config_loc}/header.txt"/>
<property name="multiLines" value="3"/>
</module>

<!-- Flag IDE generated comments -->
Expand Down
14 changes: 1 addition & 13 deletions dev/checkstyle/header.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
^/\*$
^ \* Copyright [\d]{4}((,[\s]*[\d]{4})*|(-[\d]{4})?) C Thing Software$
^ \* .*
^ \*$
^ \* Licensed under the Apache License, Version 2\.0 \(the "License"\);$
^ \* you may not use this file except in compliance with the License\.$
^ \* You may obtain a copy of the License at$
^ \*$
^ \* http://www\.apache\.org/licenses/LICENSE-2\.0$
^ \*$
^ \* Unless required by applicable law or agreed to in writing, software$
^ \* distributed under the License is distributed on an "AS IS" BASIS,$
^ \* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\.$
^ \* See the License for the specific language governing permissions and$
^ \* limitations under the License\.$
^ \* SPDX-License-Identifier: Apache-2.0$
^ \*/$
13 changes: 1 addition & 12 deletions src/main/java/org/cthing/xmlwriter/XmlAttributes.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
/*
* Copyright 2022 C Thing Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/
package org.cthing.xmlwriter;

Expand Down
15 changes: 1 addition & 14 deletions src/main/java/org/cthing/xmlwriter/XmlWriter.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
/*
* Copyright 2022 C Thing Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/
package org.cthing.xmlwriter;

Expand Down Expand Up @@ -615,7 +604,6 @@ public void flush() throws SAXException {
* output is used.
* @return The newly set writer.
*/
@SuppressWarnings({ "resource", "IOResourceOpenedButNotSafelyClosed" })
public final Writer setOutput(@Nullable @WillNotClose final Writer writer) {
this.out = (writer == null) ? new OutputStreamWriter(System.out, StandardCharsets.UTF_8) : writer;
return this.out;
Expand Down Expand Up @@ -2501,7 +2489,6 @@ private void writeName(final String uri, final String localName, final String qN
* @return Number of namespace declaration attributes written
* @throws SAXException If there is a problem writing the namespaces.
*/
@SuppressWarnings("unchecked")
private int writeNSDecls() throws SAXException {
// Since the iteration order for namespaces is not stable, sort them.
final List<String> prefixes = Collections.list(this.nsSupport.getDeclaredPrefixes());
Expand Down
13 changes: 1 addition & 12 deletions src/main/java/org/cthing/xmlwriter/package-info.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
/*
* Copyright 2022 C Thing Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/

/**
Expand Down
13 changes: 1 addition & 12 deletions src/test/java/org/cthing/xmlwriter/XmlAttributesTest.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
/*
* Copyright 2022 C Thing Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/
package org.cthing.xmlwriter;

Expand Down
13 changes: 1 addition & 12 deletions src/test/java/org/cthing/xmlwriter/XmlWriterTest.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
/*
* Copyright 2022 C Thing Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/
package org.cthing.xmlwriter;

Expand Down

0 comments on commit b7370a7

Please sign in to comment.