File tree 1 file changed +0
-23
lines changed
src/main/java/com/rabbitmq/stream/impl
1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change 26
26
import java .util .function .Consumer ;
27
27
import java .util .function .LongConsumer ;
28
28
import java .util .function .Predicate ;
29
- import java .util .stream .Collectors ;
30
29
import javax .net .ssl .X509TrustManager ;
31
30
import org .slf4j .Logger ;
32
31
import org .slf4j .LoggerFactory ;
@@ -214,26 +213,4 @@ public X509Certificate[] getAcceptedIssuers() {
214
213
return new X509Certificate [0 ];
215
214
}
216
215
}
217
-
218
- private static boolean notNullOrBlank (String str ) {
219
- return str != null && !str .trim ().isEmpty ();
220
- }
221
-
222
- private static String arrayToString (Object [] array ) {
223
- if (emptyArray (array )) {
224
- return "" ;
225
- } else {
226
- return Arrays .stream (array )
227
- .map (o -> o == null ? "null" : o .toString ())
228
- .collect (Collectors .joining ());
229
- }
230
- }
231
-
232
- private static boolean emptyArray (Object [] array ) {
233
- return array == null || array .length == 0 ;
234
- }
235
-
236
- private static boolean notEmptyArray (Object [] array ) {
237
- return !emptyArray (array );
238
- }
239
216
}
You can’t perform that action at this time.
0 commit comments