parse and ignore deprecated attribute

This commit is contained in:
Andreas Gal 2014-07-30 17:25:07 -07:00
Родитель df5a0d2dc1
Коммит 20529980c6
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -84,6 +84,10 @@ var getClassImage = function(classBytes) {
attribute.type = ATTRIBUTE_TYPES.Synthetic;
return attribute;
case ATTRIBUTE_TYPES.Deprecated:
attribute.type = ATTRIBUTE_TYPES.Deprecated;
return attribute;
default:
throw new Error("This attribute type is not supported yet. [" + JSON.stringify(item) + "]");
}