-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client will now notice if the server forgets to send a reply
- Added a new catch-clause, so the client will notice if the server forgets to send a reply (sendReply(Socket, Object...)). - Slightly improved Diffie Hellman Factory - Added Java version to contributing guidelines
- Loading branch information
Showing
3 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Contributing Guidelines | ||
|
||
## Code Style | ||
- Do not use a single line for a {, but put it at the end of the previous line | ||
- Do not leave { or } out if possible, e.g. when writing an if statement with just one line in its body | ||
- Do not change the line breaks of the Javadoc | ||
- Do not leave { or } out even if this is possible, e.g. when writing an if statement with just one line in its body | ||
- Do not change the line breaks of the Javadoc | ||
|
||
## Java Version | ||
- Only use language features that are possible in Java 8 or earlier. | ||
|
||
|
||
Thank you for contributing! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters