Skip to content

Commit

Permalink
fixed observer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Koegel committed May 21, 2012
1 parent f8a971f commit 10ad754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,8 +1,7 @@
package org.eclipse.emf.emfstore.client.test.common.observerbus.assets;

import org.eclipse.emf.emfstore.common.observer.IObserver;

public interface B extends A, IObserver {
public interface B extends A {

public void setMSGToFoo(CImpl tester);
}
Expand Up @@ -288,6 +288,7 @@ private Set<Class<?>> getAllInterfaces(final Class<?> clazz,

for (Class<?> iface : clazz.getInterfaces()) {
interfacesFound.add((Class<?>) iface);
interfacesFound.addAll(getAllInterfaces(iface, interfacesFound));
}

if (clazz.getSuperclass() == null) {
Expand Down

0 comments on commit 10ad754

Please sign in to comment.