mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-08 19:02:00 +01:00
Fixed Maven build failure
Change-Id: I40aabf5ac0f9b51432fe670cd90b614b2b893691
This commit is contained in:
parent
fe3d7b4282
commit
ffaeac375e
@ -151,24 +151,24 @@ public class AbstractVirtualListenerManagerTest {
|
|||||||
private enum Type { FOO }
|
private enum Type { FOO }
|
||||||
|
|
||||||
private static class Thing extends AbstractEvent<Type, String> {
|
private static class Thing extends AbstractEvent<Type, String> {
|
||||||
private Thing(String subject) {
|
protected Thing(String subject) {
|
||||||
super(Type.FOO, subject);
|
super(Type.FOO, subject);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class Prickle extends Thing {
|
private static final class Prickle extends Thing {
|
||||||
private Prickle(String subject) {
|
private Prickle(String subject) {
|
||||||
super(subject);
|
super(subject);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class Goo extends Thing {
|
private static final class Goo extends Thing {
|
||||||
private Goo(String subject) {
|
private Goo(String subject) {
|
||||||
super(subject);
|
super(subject);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class Bar extends Thing {
|
private static final class Bar extends Thing {
|
||||||
private Bar(String subject) {
|
private Bar(String subject) {
|
||||||
super(subject);
|
super(subject);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user