Skip to content

Commit

Permalink
HDDS-2527. Sonar: remove redundant temporary assignment in HddsVersio…
Browse files Browse the repository at this point in the history
…nProvider (#219)
  • Loading branch information
Shweta Yakkali authored and dineshchitlangia committed Nov 19, 2019
1 parent ecb5bf4 commit 4a4b03c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@
public class HddsVersionProvider implements IVersionProvider {
@Override
public String[] getVersion() throws Exception {
String[] result = new String[] {
return new String[] {
HddsVersionInfo.HDDS_VERSION_INFO.getBuildVersion()
};
return result;
}
}

0 comments on commit 4a4b03c

Please sign in to comment.