Skip to content

Commit 37820c4

Browse files
committed
more license fixes
1 parent dfbd9f1 commit 37820c4

File tree

4 files changed

+38
-691
lines changed

4 files changed

+38
-691
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift.org open source project
4+
//
5+
// Copyright (c) 2024 Apple Inc. and the Swift.org project authors
6+
// Licensed under Apache License v2.0
7+
//
8+
// See LICENSE.txt for license information
9+
// See CONTRIBUTORS.txt for the list of Swift.org project authors
10+
//
11+
// SPDX-License-Identifier: Apache-2.0
12+
//
13+
//===----------------------------------------------------------------------===//
14+
15+
package org.swift.swiftkit.core;
16+
17+
public class NotImplementedError extends AssertionError {
18+
19+
private static final long serialVersionUID = 1L;
20+
21+
public NotImplementedError(String message) {
22+
super(message);
23+
}
24+
}

SwiftKitCore/src/main/java/org/swift/swiftkit/core/NotImplementedException.java

Lines changed: 0 additions & 10 deletions
This file was deleted.

SwiftKitCore/src/main/java/org/swift/swiftkit/core/Preconditions.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
/*
2-
* Copyright (C) 2007 The Guava Authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5-
* in compliance with the License. You may obtain a copy of the License at
6-
*
7-
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
9-
* Unless required by applicable law or agreed to in writing, software distributed under the License
10-
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11-
* or implied. See the License for the specific language governing permissions and limitations under
12-
* the License.
13-
*/
14-
151
//===----------------------------------------------------------------------===//
162
//
173
// This source file is part of the Swift.org open source project
@@ -26,6 +12,20 @@
2612
//
2713
//===----------------------------------------------------------------------===//
2814

15+
/*
16+
* Copyright (C) 2007 The Guava Authors
17+
*
18+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
19+
* in compliance with the License. You may obtain a copy of the License at
20+
*
21+
* http://www.apache.org/licenses/LICENSE-2.0
22+
*
23+
* Unless required by applicable law or agreed to in writing, software distributed under the License
24+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
25+
* or implied. See the License for the specific language governing permissions and limitations under
26+
* the License.
27+
*/
28+
2929
package org.swift.swiftkit.core;
3030

3131
import org.swift.swiftkit.core.annotations.Nullable;

0 commit comments

Comments
 (0)