diff options
author | Thomas Nelson <nelson24@att.com> | 2019-01-17 20:38:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-17 20:38:58 +0000 |
commit | 48097e789530603d29eb798a58e2dd0788431cf2 (patch) | |
tree | d3837043e37a29a60c67b727a989b7c3337a4a53 /src/main/java | |
parent | 7b7e4267376c14e59f762a785123b8de3d64a285 (diff) | |
parent | a4fe2f2cb76b373d473c52f2e61ca8ccfaf82536 (diff) |
Merge "fixed sonar issue in ZNodeName.java"
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/org/onap/music/lockingservice/ZNodeName.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/music/lockingservice/ZNodeName.java b/src/main/java/org/onap/music/lockingservice/ZNodeName.java index 0c190f14..f4971e11 100644 --- a/src/main/java/org/onap/music/lockingservice/ZNodeName.java +++ b/src/main/java/org/onap/music/lockingservice/ZNodeName.java @@ -4,6 +4,8 @@ * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property * =================================================================== + * Modifications Copyright (c) 2018 IBM + * =================================================================== * 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 @@ -59,7 +61,7 @@ class ZNodeName implements Comparable<ZNodeName> { @Override public String toString() { - return name.toString(); + return name; } @Override |