mirror of https://github.com/apache/openjpa.git
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:
parent
ae1e715248
commit
2ab51d77a6
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue