OPENJPA-1844: Fix line length in DataCacheTable.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1027195 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2010-10-25 17:00:31 +00:00
parent ae1e715248
commit 2ab51d77a6
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ public class DataCacheTable extends AbstractTableModel {
// Column names -- key, reads, hits, writes // Column names -- key, reads, hits, writes
private static final String[] _cols = private static final String[] _cols =
{ _loc.get("datacachetable.column.key").getMessage(), _loc.get("datacachetable.column.reads").getMessage(), { _loc.get("datacachetable.column.key").getMessage(), _loc.get("datacachetable.column.reads").getMessage(),
_loc.get("datacachetable.column.hits").getMessage(), _loc.get("datacachetable.column.writes").getMessage(), }; _loc.get("datacachetable.column.hits").getMessage(), _loc.get("datacachetable.column.writes").getMessage()
};
// row, col // row, col
private Object[][] _tableData; private Object[][] _tableData;