mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
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:
parent
7eb6e8437a
commit
048600ce79
|
@ -20,7 +20,7 @@ package com.google.zxing.common.flexdatatypes
|
|||
{
|
||||
if (this._arr[i][0] == key)
|
||||
{
|
||||
return i;
|
||||
return (i as int);
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
|
|
Loading…
Reference in a new issue