Whitespace polishing: leading spaces->tabs; updated eclipse configuration to default to leading tabs for all bundles

This commit is contained in:
Chris Beams
2008-12-18 14:50:25 +00:00
parent 0f521c3bfb
commit 579280d7bf
87 changed files with 4294 additions and 654 deletions

View File

@@ -93,7 +93,7 @@ public class MockActionRequest extends MockPortletRequest implements ActionReque
}
else {
return null;
}
}
}
public void setCharacterEncoding(String characterEncoding) {
@@ -104,7 +104,7 @@ public class MockActionRequest extends MockPortletRequest implements ActionReque
if (this.content != null) {
InputStream sourceStream = new ByteArrayInputStream(this.content);
Reader sourceReader = (this.characterEncoding != null) ?
new InputStreamReader(sourceStream, this.characterEncoding) : new InputStreamReader(sourceStream);
new InputStreamReader(sourceStream, this.characterEncoding) : new InputStreamReader(sourceStream);
return new BufferedReader(sourceReader);
}
else {

View File

@@ -51,7 +51,7 @@ public class MockPortletRequestDispatcher implements PortletRequestDispatcher {
this.url = url;
}
public void include(RenderRequest request, RenderResponse response) throws PortletException, IOException {
Assert.notNull(request, "Request must not be null");
Assert.notNull(response, "Response must not be null");
@@ -61,7 +61,7 @@ public class MockPortletRequestDispatcher implements PortletRequestDispatcher {
((MockRenderResponse) response).setIncludedUrl(this.url);
if (logger.isDebugEnabled()) {
logger.debug("MockPortletRequestDispatcher: including URL [" + this.url + "]");
}
}
}
}

View File

@@ -77,8 +77,8 @@ public class MockPortletURL implements PortletURL {
this.portalContext = portalContext;
this.urlType = urlType;
}
//---------------------------------------------------------------------
// PortletURL methods
//---------------------------------------------------------------------

View File

@@ -50,7 +50,7 @@ import org.springframework.util.StringUtils;
*/
@Deprecated
public abstract class AbstractTransactionalDataSourceSpringContextTests
extends AbstractTransactionalSpringContextTests {
extends AbstractTransactionalSpringContextTests {
protected JdbcTemplate jdbcTemplate;
@@ -127,7 +127,7 @@ public abstract class AbstractTransactionalDataSourceSpringContextTests
}
super.setComplete();
}
/**
* Count the rows in the given table
* @param tableName table name to count rows in
@@ -136,8 +136,8 @@ public abstract class AbstractTransactionalDataSourceSpringContextTests
protected int countRowsInTable(String tableName) {
return this.jdbcTemplate.queryForInt("SELECT COUNT(0) FROM " + tableName);
}
/**
* Execute the given SQL script. Will be rolled back by default,
* according to the fate of the current transaction.