Skip to content

Commit 411e7fa

Browse files
author
Myron Scott
committed
copyright info in build is not relevant or used. Just make it empty for now
1 parent 8938686 commit 411e7fa

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

common-spi/src/main/java/com/tc/productinfo/BaseBuildInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public String getRevision() {
6565

6666
@Override
6767
public String getCopyright() {
68-
return "Copyright (c) 2003-2020 Terracotta, Inc. All rights reserved.";
68+
return "";
6969
}
7070

7171
@Override

common/src/test/java/com/tc/util/ProductInfoTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,7 @@ private void verifyOpenSourceBuildData(ProductInfo info) {
101101

102102
String copyright = info.copyright();
103103
assertNotNull(copyright);
104-
assertTrue(copyright.indexOf("Copyright (c)") >= 0);
105-
assertTrue(copyright.indexOf("Terracotta, Inc.") >= 0);
106-
assertTrue(copyright.indexOf("All rights reserved.") >= 0);
107-
104+
108105
assertEquals("1.2.3", info.kitID());
109106
assertEquals("1.2.3-SNAPSHOT", info.mavenArtifactsVersion());
110107
assertEquals("Terracotta", info.moniker());

0 commit comments

Comments
 (0)