Skip to content

Commit

Permalink
Fix @DefaultValue regression. Collaboration work with Mark McBride at…
Browse files Browse the repository at this point in the history
… gmail dot com
  • Loading branch information
jfarcand committed Jun 17, 2010
1 parent 93488ee commit 1c2a145
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static class BroadcasterProvider implements StringReaderProvider {

public StringReader getStringReader(Class type, Type genericType, Annotation[] annotations) {

if (!type.getClass().isAssignableFrom(Broadcaster.class)) {
if (!Broadcaster.class.isAssignableFrom(type)) {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,8 @@ public Response onCompleted(Response r) throws Exception {
}

@Test(timeOut = 60000)
public void testBroasdcasterScope() {
System.out.println("Running testBroasdcasterScope");
public void testBroadcasterScope() {
System.out.println("Running testBroadcasterScope");
final CountDownLatch latch = new CountDownLatch(2);
AsyncHttpClient c = new AsyncHttpClient();
try {
Expand Down

0 comments on commit 1c2a145

Please sign in to comment.