Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit bb1b9e2

Browse files
erdomjelbourn
authored andcommitted
Update year references to 2019 (#579)
1 parent 3d0dfc3 commit bb1b9e2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2018 Google, Inc.
3+
Copyright (c) 2019 Google, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/app/shared/footer/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</div>
1616

1717
<div class="docs-footer-copyright">
18-
<span>Powered by Google ©2010-2018.</span>
18+
<span>Powered by Google ©2010-2019.</span>
1919
<span>Code licensed under an MIT-style License.</span>
2020
<span>Documentation licensed under CC BY 4.0.</span>
2121
</div>

src/app/shared/stackblitz/stackblitz-writer.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ describe('StackblitzWriter', () => {
3232
it('should append correct copyright', () => {
3333
expect(stackblitzWriter._appendCopyright('test.ts', 'NoContent')).toBe(`NoContent
3434
35-
/** Copyright 2018 Google Inc. All Rights Reserved.
35+
/** Copyright 2019 Google Inc. All Rights Reserved.
3636
Use of this source code is governed by an MIT-style license that
3737
can be found in the LICENSE file at http://angular.io/license */`);
3838

3939
expect(stackblitzWriter._appendCopyright('test.html', 'NoContent')).toBe(`NoContent
4040
41-
<!-- Copyright 2018 Google Inc. All Rights Reserved.
41+
<!-- Copyright 2019 Google Inc. All Rights Reserved.
4242
Use of this source code is governed by an MIT-style license that
4343
can be found in the LICENSE file at http://angular.io/license -->`);
4444

src/app/shared/stackblitz/stackblitz-writer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {materialVersion} from '../version/version';
88
const STACKBLITZ_URL = 'https://run.stackblitz.com/api/angular/v1';
99

1010
const COPYRIGHT =
11-
`Copyright 2018 Google Inc. All Rights Reserved.
11+
`Copyright 2019 Google Inc. All Rights Reserved.
1212
Use of this source code is governed by an MIT-style license that
1313
can be found in the LICENSE file at http://angular.io/license`;
1414

0 commit comments

Comments
 (0)