Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected ServletUnitClient newClient() {

/**
* Here we expect an errorCode other than 200, and look for it checking for
* text is omitted as it doesnt work. It would never work on java1.3, but
* text is omitted as it doesn't work. It would never work on java1.3, but
* one may have expected java1.4+ to have access to the error stream in
* responses. Clearly not.
*
Expand All @@ -98,7 +98,7 @@ protected void expectErrorCode(WebRequest request, int errorCode, String errorTe
} catch (HttpException e) {
assertEquals(failureText, errorCode, e.getResponseCode());
/*
* checking for text omitted as it doesnt work. if(errorText!=null) {
* checking for text omitted as it doesn't work. if(errorText!=null) {
* assertTrue( "Failed to find "+errorText+" in "+
* e.getResponseMessage(), e.getMessage().indexOf(errorText)>=0); }
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ private CorbaType processOMGUnion(XmlSchemaComplexType complex, QName defaultNam
} else if (fields.size() == 1) {
caselist.add("TRUE");
} else {
String msg = "Discriminator Type doesnt match number of Choices in Union:" + name;
String msg = "Discriminator Type doesn't match number of Choices in Union:" + name;
LOG.log(Level.WARNING, msg);
}
}
Expand Down