diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-07 14:05:44 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-07 14:05:44 -0230 |
commit | e3a672a438635a1173388aea9d7a2d44de358945 (patch) | |
tree | 57113ece1dd013c9687468a8dd7cc62c80136b86 /java/src/Ice/LoggerPlugin.java | |
parent | ICE-5457 added ability to set source address for connections (diff) | |
download | ice-e3a672a438635a1173388aea9d7a2d44de358945.tar.bz2 ice-e3a672a438635a1173388aea9d7a2d44de358945.tar.xz ice-e3a672a438635a1173388aea9d7a2d44de358945.zip |
Add @Override where possible, and remove trailing white space.
Diffstat (limited to 'java/src/Ice/LoggerPlugin.java')
-rw-r--r-- | java/src/Ice/LoggerPlugin.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/src/Ice/LoggerPlugin.java b/java/src/Ice/LoggerPlugin.java index 8ff9d16016a..dd0ae4767fa 100644 --- a/java/src/Ice/LoggerPlugin.java +++ b/java/src/Ice/LoggerPlugin.java @@ -25,7 +25,7 @@ public class LoggerPlugin implements Ice.Plugin * @param communicator The communicator using the custom logger. * @param logger The custom logger for the communicator. **/ - public + public LoggerPlugin(Communicator communicator, Logger logger) { if(communicator == null) @@ -51,7 +51,8 @@ public class LoggerPlugin implements Ice.Plugin * can override this method to perform any initialization that might be required * by a custom logger. **/ - public void + @Override + public void initialize() { } @@ -61,6 +62,7 @@ public class LoggerPlugin implements Ice.Plugin * can override this method to perform any finalization that might be required * by a custom logger. **/ + @Override public void destroy() { |