From 4a987d4393930f1bd0e5b70838234930ec29c60a Mon Sep 17 00:00:00 2001 From: Antony Denyer Date: Thu, 14 Nov 2019 14:46:12 +0000 Subject: [PATCH] build: update license --- build.gradle | 12 ++++++------ src/main/java/org/web3j/console/ConsoleDevice.java | 9 ++++----- src/main/java/org/web3j/console/IODevice.java | 2 +- src/main/java/org/web3j/console/KeyImporter.java | 2 +- src/main/java/org/web3j/console/Runner.java | 2 +- src/main/java/org/web3j/console/WalletCreator.java | 2 +- src/main/java/org/web3j/console/WalletFunder.java | 2 +- src/main/java/org/web3j/console/WalletManager.java | 2 +- src/main/java/org/web3j/console/WalletRunner.java | 2 +- src/main/java/org/web3j/console/WalletSendFunds.java | 2 +- src/main/java/org/web3j/console/WalletUpdater.java | 2 +- .../web3j/console/project/InteractiveImporter.java | 2 +- .../web3j/console/project/InteractiveOptions.java | 2 +- src/main/java/org/web3j/console/project/Project.java | 2 +- .../org/web3j/console/project/ProjectCreator.java | 2 +- .../console/project/ProjectCreatorCLIRunner.java | 2 +- .../org/web3j/console/project/ProjectImporter.java | 2 +- .../console/project/ProjectImporterCLIRunner.java | 2 +- .../org/web3j/console/project/ProjectStructure.java | 2 +- .../org/web3j/console/project/ProjectVisitor.java | 2 +- .../org/web3j/console/project/ProjectWriter.java | 2 +- .../org/web3j/console/project/TemplateProvider.java | 2 +- .../web3j/console/project/utills/InputVerifier.java | 2 +- src/test/java/org/web3j/console/KeyImporterTest.java | 2 +- src/test/java/org/web3j/console/SampleKeys.java | 2 +- .../java/org/web3j/console/WalletCreatorTest.java | 2 +- .../java/org/web3j/console/WalletUpdaterTest.java | 2 +- .../console/project/InteractiveImporterTest.java | 2 +- .../console/project/InteractiveOptionsTest.java | 2 +- .../console/project/ProjectCreatorCLIRunnerTest.java | 2 +- .../web3j/console/project/ProjectCreatorTest.java | 2 +- .../project/ProjectImporterCLIRunnerTest.java | 2 +- .../web3j/console/project/ProjectImporterTest.java | 2 +- .../web3j/console/project/ProjectStructureTest.java | 2 +- .../java/org/web3j/console/project/ProjectTest.java | 2 +- .../org/web3j/console/project/ProjectWriterTest.java | 2 +- .../web3j/console/project/TemplateProviderTest.java | 2 +- .../web3j/console/project/utills/ClassExecutor.java | 2 +- .../console/project/utills/InputVerifierTest.java | 2 +- 39 files changed, 47 insertions(+), 48 deletions(-) diff --git a/build.gradle b/build.gradle index aede8f9..6c9dae8 100644 --- a/build.gradle +++ b/build.gradle @@ -17,15 +17,16 @@ ext { slf4jVersion = "1.7.+" junitVersion = '5.+' mockitoVersion = "3.+" + ktlintVersion = "0.31.0" } apply { [ - 'jacoco', - 'java', - 'javadoc', - 'repositories', - 'spotless' + 'jacoco', + 'java', + 'javadoc', + 'repositories', + 'spotless' ].each { from("$rootDir/gradle/$it/build.gradle") } @@ -52,4 +53,3 @@ dependencies { testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion", "org.mockito:mockito-core:$mockitoVersion" } - diff --git a/src/main/java/org/web3j/console/ConsoleDevice.java b/src/main/java/org/web3j/console/ConsoleDevice.java index 9ec7601..2ac3c1c 100644 --- a/src/main/java/org/web3j/console/ConsoleDevice.java +++ b/src/main/java/org/web3j/console/ConsoleDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 @@ -14,9 +14,7 @@ import java.io.Console; -/** - * System Console device wrapper. - */ +/** System Console device wrapper. */ public class ConsoleDevice implements IODevice { private Console console = System.console(); @@ -27,7 +25,8 @@ public void printf(String format, Object... args) { } @Override - public String readLine(String fmt, Object... args) { return console.readLine(fmt, args); + public String readLine(String fmt, Object... args) { + return console.readLine(fmt, args); } @Override diff --git a/src/main/java/org/web3j/console/IODevice.java b/src/main/java/org/web3j/console/IODevice.java index ae4a143..b237c23 100644 --- a/src/main/java/org/web3j/console/IODevice.java +++ b/src/main/java/org/web3j/console/IODevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/KeyImporter.java b/src/main/java/org/web3j/console/KeyImporter.java index aec03cd..ef18b8a 100644 --- a/src/main/java/org/web3j/console/KeyImporter.java +++ b/src/main/java/org/web3j/console/KeyImporter.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/Runner.java b/src/main/java/org/web3j/console/Runner.java index 4b8566c..f53ea58 100644 --- a/src/main/java/org/web3j/console/Runner.java +++ b/src/main/java/org/web3j/console/Runner.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletCreator.java b/src/main/java/org/web3j/console/WalletCreator.java index a74ee81..7aa71fe 100644 --- a/src/main/java/org/web3j/console/WalletCreator.java +++ b/src/main/java/org/web3j/console/WalletCreator.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletFunder.java b/src/main/java/org/web3j/console/WalletFunder.java index feea81f..4227d25 100644 --- a/src/main/java/org/web3j/console/WalletFunder.java +++ b/src/main/java/org/web3j/console/WalletFunder.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletManager.java b/src/main/java/org/web3j/console/WalletManager.java index e270467..0ca6f60 100644 --- a/src/main/java/org/web3j/console/WalletManager.java +++ b/src/main/java/org/web3j/console/WalletManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletRunner.java b/src/main/java/org/web3j/console/WalletRunner.java index 2134f64..531da9e 100644 --- a/src/main/java/org/web3j/console/WalletRunner.java +++ b/src/main/java/org/web3j/console/WalletRunner.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletSendFunds.java b/src/main/java/org/web3j/console/WalletSendFunds.java index b1eb166..b7b08a2 100644 --- a/src/main/java/org/web3j/console/WalletSendFunds.java +++ b/src/main/java/org/web3j/console/WalletSendFunds.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/WalletUpdater.java b/src/main/java/org/web3j/console/WalletUpdater.java index bfc5f17..45b756a 100644 --- a/src/main/java/org/web3j/console/WalletUpdater.java +++ b/src/main/java/org/web3j/console/WalletUpdater.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/InteractiveImporter.java b/src/main/java/org/web3j/console/project/InteractiveImporter.java index 5883588..ded755d 100644 --- a/src/main/java/org/web3j/console/project/InteractiveImporter.java +++ b/src/main/java/org/web3j/console/project/InteractiveImporter.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/InteractiveOptions.java b/src/main/java/org/web3j/console/project/InteractiveOptions.java index 20d94c9..a4f2618 100644 --- a/src/main/java/org/web3j/console/project/InteractiveOptions.java +++ b/src/main/java/org/web3j/console/project/InteractiveOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/Project.java b/src/main/java/org/web3j/console/project/Project.java index 8e51096..5b94d66 100644 --- a/src/main/java/org/web3j/console/project/Project.java +++ b/src/main/java/org/web3j/console/project/Project.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectCreator.java b/src/main/java/org/web3j/console/project/ProjectCreator.java index 34fcd41..cdf11b9 100644 --- a/src/main/java/org/web3j/console/project/ProjectCreator.java +++ b/src/main/java/org/web3j/console/project/ProjectCreator.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectCreatorCLIRunner.java b/src/main/java/org/web3j/console/project/ProjectCreatorCLIRunner.java index 0a9efff..fde5d3a 100644 --- a/src/main/java/org/web3j/console/project/ProjectCreatorCLIRunner.java +++ b/src/main/java/org/web3j/console/project/ProjectCreatorCLIRunner.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectImporter.java b/src/main/java/org/web3j/console/project/ProjectImporter.java index 76ae905..b9223bb 100644 --- a/src/main/java/org/web3j/console/project/ProjectImporter.java +++ b/src/main/java/org/web3j/console/project/ProjectImporter.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectImporterCLIRunner.java b/src/main/java/org/web3j/console/project/ProjectImporterCLIRunner.java index 9f09d56..44cbb4d 100644 --- a/src/main/java/org/web3j/console/project/ProjectImporterCLIRunner.java +++ b/src/main/java/org/web3j/console/project/ProjectImporterCLIRunner.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectStructure.java b/src/main/java/org/web3j/console/project/ProjectStructure.java index cb690d1..912f24f 100644 --- a/src/main/java/org/web3j/console/project/ProjectStructure.java +++ b/src/main/java/org/web3j/console/project/ProjectStructure.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectVisitor.java b/src/main/java/org/web3j/console/project/ProjectVisitor.java index 4fa259b..fb2904f 100644 --- a/src/main/java/org/web3j/console/project/ProjectVisitor.java +++ b/src/main/java/org/web3j/console/project/ProjectVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/ProjectWriter.java b/src/main/java/org/web3j/console/project/ProjectWriter.java index 9701645..bc0992e 100644 --- a/src/main/java/org/web3j/console/project/ProjectWriter.java +++ b/src/main/java/org/web3j/console/project/ProjectWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/TemplateProvider.java b/src/main/java/org/web3j/console/project/TemplateProvider.java index c690a6b..3aab16d 100644 --- a/src/main/java/org/web3j/console/project/TemplateProvider.java +++ b/src/main/java/org/web3j/console/project/TemplateProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/main/java/org/web3j/console/project/utills/InputVerifier.java b/src/main/java/org/web3j/console/project/utills/InputVerifier.java index 0ace964..9a5c25a 100644 --- a/src/main/java/org/web3j/console/project/utills/InputVerifier.java +++ b/src/main/java/org/web3j/console/project/utills/InputVerifier.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/KeyImporterTest.java b/src/test/java/org/web3j/console/KeyImporterTest.java index 9f97aa8..93f62c3 100644 --- a/src/test/java/org/web3j/console/KeyImporterTest.java +++ b/src/test/java/org/web3j/console/KeyImporterTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/SampleKeys.java b/src/test/java/org/web3j/console/SampleKeys.java index d508c8e..f7fd35f 100644 --- a/src/test/java/org/web3j/console/SampleKeys.java +++ b/src/test/java/org/web3j/console/SampleKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/WalletCreatorTest.java b/src/test/java/org/web3j/console/WalletCreatorTest.java index e8fa430..0f2c824 100644 --- a/src/test/java/org/web3j/console/WalletCreatorTest.java +++ b/src/test/java/org/web3j/console/WalletCreatorTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/WalletUpdaterTest.java b/src/test/java/org/web3j/console/WalletUpdaterTest.java index 9acddd5..807734d 100644 --- a/src/test/java/org/web3j/console/WalletUpdaterTest.java +++ b/src/test/java/org/web3j/console/WalletUpdaterTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/InteractiveImporterTest.java b/src/test/java/org/web3j/console/project/InteractiveImporterTest.java index 9b7f8e9..3658a9e 100644 --- a/src/test/java/org/web3j/console/project/InteractiveImporterTest.java +++ b/src/test/java/org/web3j/console/project/InteractiveImporterTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/InteractiveOptionsTest.java b/src/test/java/org/web3j/console/project/InteractiveOptionsTest.java index 2666569..5b83efe 100644 --- a/src/test/java/org/web3j/console/project/InteractiveOptionsTest.java +++ b/src/test/java/org/web3j/console/project/InteractiveOptionsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectCreatorCLIRunnerTest.java b/src/test/java/org/web3j/console/project/ProjectCreatorCLIRunnerTest.java index 4d14d23..ca892c6 100644 --- a/src/test/java/org/web3j/console/project/ProjectCreatorCLIRunnerTest.java +++ b/src/test/java/org/web3j/console/project/ProjectCreatorCLIRunnerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectCreatorTest.java b/src/test/java/org/web3j/console/project/ProjectCreatorTest.java index edb157a..2b96915 100644 --- a/src/test/java/org/web3j/console/project/ProjectCreatorTest.java +++ b/src/test/java/org/web3j/console/project/ProjectCreatorTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectImporterCLIRunnerTest.java b/src/test/java/org/web3j/console/project/ProjectImporterCLIRunnerTest.java index 2e98ee3..f1dc2d1 100644 --- a/src/test/java/org/web3j/console/project/ProjectImporterCLIRunnerTest.java +++ b/src/test/java/org/web3j/console/project/ProjectImporterCLIRunnerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectImporterTest.java b/src/test/java/org/web3j/console/project/ProjectImporterTest.java index 41d2a1a..6bc3f4f 100644 --- a/src/test/java/org/web3j/console/project/ProjectImporterTest.java +++ b/src/test/java/org/web3j/console/project/ProjectImporterTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectStructureTest.java b/src/test/java/org/web3j/console/project/ProjectStructureTest.java index 64488aa..d31785c 100644 --- a/src/test/java/org/web3j/console/project/ProjectStructureTest.java +++ b/src/test/java/org/web3j/console/project/ProjectStructureTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectTest.java b/src/test/java/org/web3j/console/project/ProjectTest.java index 66f8604..25e4b73 100644 --- a/src/test/java/org/web3j/console/project/ProjectTest.java +++ b/src/test/java/org/web3j/console/project/ProjectTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/ProjectWriterTest.java b/src/test/java/org/web3j/console/project/ProjectWriterTest.java index e2dbc48..4cc94a7 100644 --- a/src/test/java/org/web3j/console/project/ProjectWriterTest.java +++ b/src/test/java/org/web3j/console/project/ProjectWriterTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/TemplateProviderTest.java b/src/test/java/org/web3j/console/project/TemplateProviderTest.java index a8501ea..1a4b446 100644 --- a/src/test/java/org/web3j/console/project/TemplateProviderTest.java +++ b/src/test/java/org/web3j/console/project/TemplateProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/utills/ClassExecutor.java b/src/test/java/org/web3j/console/project/utills/ClassExecutor.java index 26df328..6d238e5 100644 --- a/src/test/java/org/web3j/console/project/utills/ClassExecutor.java +++ b/src/test/java/org/web3j/console/project/utills/ClassExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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 diff --git a/src/test/java/org/web3j/console/project/utills/InputVerifierTest.java b/src/test/java/org/web3j/console/project/utills/InputVerifierTest.java index d17e770..7a530e2 100644 --- a/src/test/java/org/web3j/console/project/utills/InputVerifierTest.java +++ b/src/test/java/org/web3j/console/project/utills/InputVerifierTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Web3 Labs LTD. + * Copyright 2019 Web3 Labs Ltd. * * 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