fixed return value with explicit int cast

git-svn-id: https://zxing.googlecode.com/svn/trunk@2188 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
bas5winkel@gmail.com 2012-02-16 04:09:56 +00:00
parent 7eb6e8437a
commit 048600ce79

View file

@ -20,7 +20,7 @@ package com.google.zxing.common.flexdatatypes
{ {
if (this._arr[i][0] == key) if (this._arr[i][0] == key)
{ {
return i; return (i as int);
} }
} }
return undefined; return undefined;