Commit 506f1e4e authored by Filippo Carone's avatar Filippo Carone

remove interface override annotations

parent 53375c39
...@@ -51,7 +51,6 @@ public class LoggerIterator implements Iterator<LoggerMessage> ...@@ -51,7 +51,6 @@ public class LoggerIterator implements Iterator<LoggerMessage>
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
@Override
public boolean hasNext() public boolean hasNext()
{ {
libvlc_exception_t exception = new libvlc_exception_t(); libvlc_exception_t exception = new libvlc_exception_t();
...@@ -61,7 +60,6 @@ public class LoggerIterator implements Iterator<LoggerMessage> ...@@ -61,7 +60,6 @@ public class LoggerIterator implements Iterator<LoggerMessage>
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
@Override
public LoggerMessage next() public LoggerMessage next()
{ {
libvlc_exception_t exception = new libvlc_exception_t(); libvlc_exception_t exception = new libvlc_exception_t();
...@@ -75,7 +73,6 @@ public class LoggerIterator implements Iterator<LoggerMessage> ...@@ -75,7 +73,6 @@ public class LoggerIterator implements Iterator<LoggerMessage>
* {@inheritDoc} * {@inheritDoc}
* Does not remove the element. * Does not remove the element.
*/ */
@Override
public void remove() public void remove()
{ {
// //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment