Skip to content
Snippets Groups Projects
Commit 2a0b54b9 authored by Julien Desprez's avatar Julien Desprez
Browse files

Fix missing @override

Test: local build and run
Bug: 35864476
Change-Id: I1a7623021e2f959611621477ae91cc2495cf6515
parent b0d7b896
No related branches found
No related tags found
No related merge requests found
...@@ -59,9 +59,8 @@ public class DvmLockSampleItem extends GenericItem { ...@@ -59,9 +59,8 @@ public class DvmLockSampleItem extends GenericItem {
super(ATTRIBUTES); super(ATTRIBUTES);
} }
/** /** {@inheritDoc} */
* {@inheritDoc} @Override
*/
public void setAttribute(String attribute, Object value) throws IllegalArgumentException { public void setAttribute(String attribute, Object value) throws IllegalArgumentException {
if(ATTRIBUTES.contains(attribute)) { if(ATTRIBUTES.contains(attribute)) {
if (TYPES.get(attribute).isAssignableFrom(value.getClass())) { if (TYPES.get(attribute).isAssignableFrom(value.getClass())) {
...@@ -77,9 +76,8 @@ public class DvmLockSampleItem extends GenericItem { ...@@ -77,9 +76,8 @@ public class DvmLockSampleItem extends GenericItem {
} }
} }
/** /** {@inheritDoc} */
* {@inheritDoc} @Override
*/
public Object getAttribute(String attribute) throws IllegalArgumentException { public Object getAttribute(String attribute) throws IllegalArgumentException {
return super.getAttribute(attribute); return super.getAttribute(attribute);
} }
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment