Kaydet (Commit) ccbb51ad authored tarafından Noel Grandin's avatar Noel Grandin

use correct loop index variable

Change-Id: I92531f8fc96c0cb0ca944a7dd50c4fe4ea740b37
üst 619dc5d4
......@@ -281,9 +281,9 @@ public class AccessibleStatusBarItem {
System.out.println("* Implementation Name: " + xSI.getImplementationName());
String accName = object.getAccessibleContext().getAccessibleName();
System.out.println("* Accessible Name: " + accName);
for (int j=0; i<services.length; i++)
for (int j=0; j<services.length; j++)
{
System.out.println("* ServiceName "+i+": "+ services[j]);
System.out.println("* ServiceName "+j+": "+ services[j]);
}
System.out.println("*****");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment