Skip to content

Remove dependency on appd-exts-commons #173

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 4, 2025

Conversation

breedx-splk
Copy link
Contributor

This was being used just to source a couple of transitive dependencies, including snakeyaml, jackson, and guava. The guava usages were minimal, so I just replaced those with standard java calls. We depend on snakeyaml and jackson explicitly now.

@@ -70,7 +69,7 @@ private void addEnvProperty(Hashtable env, String propName, Object propVal) {
if (null != propVal) {
if (propVal instanceof String) {
String propString = (String) propVal;
if (Strings.isNullOrEmpty(propString)) {
if (propString.isEmpty()) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this reads like a potential semantic change, but the cast would NPE above, so we're already guarded against the null.

@breedx-splk breedx-splk merged commit c47dc00 into signalfx:main Jun 4, 2025
4 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Jun 4, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants