OSDN Git Service

Fix cast to String[] in FullBackupAgent
authorKenny Root <kroot@google.com>
Wed, 17 Feb 2010 19:06:26 +0000 (11:06 -0800)
committerKenny Root <kroot@google.com>
Wed, 17 Feb 2010 20:47:04 +0000 (12:47 -0800)
commita3639da4f2301223c6126963e41874f826b4bfe1
treed174e33b4700f5a1c8e96e4b87192139382dc667
parentbe6079a76c5feb3952ab5c4dc8b0491d44f42b56
Fix cast to String[] in FullBackupAgent

obj.toArray() can't return anything more specific than Object[], so use
obj.toArray(new String[obj.size()]) to do this instead.

Change-Id: I87a0a2bb10206a37b28a535652a8f81f94c1f06f
core/java/android/app/FullBackupAgent.java