From e4fd2e06bf0cc1aeba0ddf1b0fe4cb123046986b Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Thu, 10 Oct 2013 01:42:06 +0000 Subject: [PATCH] actually cache prop columns git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-1.2.14@815 f203690c-595d-4dc9-a70b-905162fa7fd2 --- src/java/com/healthmarketscience/jackcess/PropertyMaps.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/java/com/healthmarketscience/jackcess/PropertyMaps.java b/src/java/com/healthmarketscience/jackcess/PropertyMaps.java index 3ffd908..19e9c3a 100644 --- a/src/java/com/healthmarketscience/jackcess/PropertyMaps.java +++ b/src/java/com/healthmarketscience/jackcess/PropertyMaps.java @@ -284,6 +284,8 @@ public class PropertyMaps implements Iterable if(col.isVariableLength()) { col.setLength((short)colType.getMaxSize()); } + + _columns.put(dataType, col); } return col; -- 2.39.5