diff --git a/services/lambda/src/main/resources/software/amazon/awssdk/services/lambda/helloworld.js b/services/lambda/src/main/resources/software/amazon/awssdk/services/lambda/helloworld.js deleted file mode 100644 index f205a2ccceeb..000000000000 --- a/services/lambda/src/main/resources/software/amazon/awssdk/services/lambda/helloworld.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -console.log('Loading event') - -exports.handler = function (event, context) { - console.log(event); - if (event === "BOOM") context.blowUp(); - context.done(null, "Hello World"); -} diff --git a/services/lambda/src/test/resources/software/amazon/awssdk/services/lambda/helloworld.js b/services/lambda/src/test/resources/software/amazon/awssdk/services/lambda/helloworld.js deleted file mode 100644 index f205a2ccceeb..000000000000 --- a/services/lambda/src/test/resources/software/amazon/awssdk/services/lambda/helloworld.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -console.log('Loading event') - -exports.handler = function (event, context) { - console.log(event); - if (event === "BOOM") context.blowUp(); - context.done(null, "Hello World"); -}