* Added new submodule for SLF4J guest post, containg modules for logback, log4j and log4j2
* * added tests for logging endpoints
* removed application tests, no use now that we have other tests
* BAEL-2250: Adding files for the article on SSL handshake failure.
* BAEL-2250 cleanup formatting
* Applied review feedback on the article.
* Adding cipher suite and protocol selection in server and client
* Corrected some code conventions.
* Revert: BAEL-2250 cleanup formatting
* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Resolve merge conflict
Added dependency for org.passay and for org.apache.commons
* Create searching/WordIndexer.java
* Create WordIndexerUnitTest.java
* Updated in response to Kevin Gilmore's questions
"What happens if the string ends with the word you're searching for? Would the next iteration of the loop cause an error if index + wordLength is greater than the last position of the string? Be sure to test this scenario."
* Updated WordIndexer in response to Kevin Gilmore
Generally speaking, it's good practice to declare return types, parameters, variables using an interface rather than an implementation, if the interface is sufficient to satisfy the need. In this case, there's no reason you can't simply return a List of Integer. (Excellent point, fixed)
The two methods are identical. Isn't the first one supposed to be the naive approach? (It was a copy and paste error, fixed)
* saving changes...
* Update java-strings/src/main/java/com/baeldung/string/searching/WordIndexer.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Update java-strings/src/main/java/com/baeldung/string/searching/WordIndexer.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Update java-strings/src/test/java/com/baeldung/string/searching/WordIndexerUnitTest.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Respond to Kevin Gilmore's code changes
* Debugging code change to JUnit