Set maxSize field to 0 if it is not specified in the type.properties file.

This commit is contained in:
hns 2002-09-16 15:55:26 +00:00
parent b7fa063e4e
commit 6e3c814e08

View file

@ -178,6 +178,8 @@ public final class Relation {
maxSize = Integer.parseInt (max);
} catch (NumberFormatException nfe) {
maxSize = 0;
} else {
maxSize = 0;
}
// get group by property
groupby = props.getProperty (propName+".group");