Skip to content

Commit 1563a28

Browse files
committed
Fix headers.
1 parent 66e0bfc commit 1563a28

File tree

7 files changed

+24
-23
lines changed

7 files changed

+24
-23
lines changed
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
! Copyright 2024 Google Inc.
2-
!
3-
! Licensed under the Apache License, Version 2.0 (the "License");
4-
! you may not use this file except in compliance with the License.
5-
! 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
10-
! distributed under the License is distributed on an "AS IS" BASIS,
11-
! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
! See the License for the specific language governing permissions and
13-
! limitations under the License.
14-
!
1+
// Copyright 2024 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// 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
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
1515
rootProject.name = 'bigtable-hello-j21'

appengine-java21/springboot-helloworld/src/main/java/com/example/appengine/demos/springboot/AppEngineConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 Google Inc.
2+
* Copyright 2024 Google LLC
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.

appengine-java21/springboot-helloworld/src/main/java/com/example/appengine/demos/springboot/ServletInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 Google Inc.
2+
* Copyright 2024 Google LLC
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.

appengine-java21/springboot-helloworld/src/main/java/com/example/appengine/demos/springboot/SpringBootExampleApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 Google Inc.
2+
* Copyright 2024 Google LLC
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.

appengine-java21/springboot-helloworld/src/main/java/com/example/appengine/demos/springboot/WebAppConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 Google Inc.
2+
* Copyright 2024 Google LLC
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.

appengine-java21/springboot-helloworld/src/main/resources/logging.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google Inc.
1+
# Copyright 2024 Google LLC
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.

appengine-java21/springboot-helloworld/src/test/java/com/example/appengine/demos/springboot/SpringBootExampleApplicationTests.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 Google Inc.
2+
* Copyright 2024 Google LLC
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.
@@ -24,11 +24,12 @@
2424
import org.junit.runner.RunWith;
2525
import org.springframework.beans.factory.annotation.Autowired;
2626
import org.springframework.beans.factory.annotation.Value;
27-
import org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory;
28-
import org.springframework.boot.web.servlet.server.AbstractServletWebServerFactory;
2927
import org.springframework.boot.test.context.SpringBootTest;
3028
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
31-
import org.springframework.test.context.junit4.SpringRunner;
29+
import org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory;
30+
import org.springframework.boot.web.servlet.server.AbstractServletWebServerFactory;
31+
import org.springframework.test.context.junit4.SpringRunner;
32+
3233
import io.restassured.RestAssured;
3334

3435
@RunWith(SpringRunner.class)

0 commit comments

Comments
 (0)