Skip to content

Commit

Permalink
FAB-4454 Remove unused deprecated method
Browse files Browse the repository at this point in the history
Change-Id: I9be7f2f5ac0fa20accc4406c977e02efd08de838
Signed-off-by: Chris Murphy <chrism@fast.au.fujitsu.com>
  • Loading branch information
chrism28282828 committed Jun 10, 2017
1 parent 90f4603 commit d86c346
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/main/java/org/hyperledger/fabric/sdk/helper/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -312,17 +312,6 @@ public static Exception checkGrpcUrl(String url) {
}
}

/**
* Check if a string is null or empty.
* @param url
* @return {@code true} if the string is null or empty; otherwise {@code false}.
* @deprecated Replaced by {@link #isNullOrEmpty}
*/
@Deprecated
public static boolean nullOrEmptyString(String url) {
return url == null || url.isEmpty();
}

/**
* Check if a string is null or empty.
*
Expand Down

0 comments on commit d86c346

Please sign in to comment.