Returns the stream to be used for debugging output. If no stream has been set, System.out is returned. @return the PrintStream to use for debugging output @since JavaMail 1.3
()
| 449 | * @since JavaMail 1.3 |
| 450 | */ |
| 451 | public synchronized PrintStream getDebugOut() { |
| 452 | if (out == null) |
| 453 | return System.out; |
| 454 | else |
| 455 | return out; |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * This method returns an array of all the implementations installed |
no outgoing calls
no test coverage detected