cleanup unneeded params in addType

This commit is contained in:
Alon Zakai 2011-04-24 18:19:57 -07:00
Родитель a2f76c0fe5
Коммит 2fb5e321d9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -147,7 +147,7 @@ function analyzer(data) {
substrate.addActor('Typevestigator', {
processItem: function(data) {
for (type in Types.needAnalysis) {
if (type) addType(type, data, Types.types);
if (type) addType(type, data);
}
Types.needAnalysis = [];
this.forwardItem(data, 'Typeanalyzer');
@ -184,7 +184,7 @@ function analyzer(data) {
type.fields.forEach(function(field) {
if (isStructType(field)) {
if (!types[field]) {
addType(field, item, types);
addType(field, item);
ready = false;
} else {
if (!types[field].flatIndexes) {