Skip to content

Commit

Permalink
make methods private
Browse files Browse the repository at this point in the history
  • Loading branch information
gcbeattyAWS committed Nov 13, 2024
1 parent ce3ed65 commit 000ebe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Amazon.Lambda.Tools/LambdaPackager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static class LambdaPackager
{ "netcoreapp1.1", Version.Parse("1.6.1") }
};

public static bool IsAmazonLinux(IToolLogger logger)
private static bool IsAmazonLinux(IToolLogger logger)
{
#if !NETCOREAPP3_1_OR_GREATER
return false;
Expand All @@ -47,7 +47,7 @@ public static bool IsAmazonLinux(IToolLogger logger)
#endif
}

public static bool IsAmazonLinux2(IToolLogger logger)
private static bool IsAmazonLinux2(IToolLogger logger)
{
#if !NETCOREAPP3_1_OR_GREATER
return false;
Expand All @@ -71,7 +71,7 @@ public static bool IsAmazonLinux2(IToolLogger logger)
#endif
}

public static bool IsAmazonLinux2023(IToolLogger logger)
private static bool IsAmazonLinux2023(IToolLogger logger)
{
#if !NETCOREAPP3_1_OR_GREATER
return false;
Expand Down

0 comments on commit 000ebe6

Please sign in to comment.