Take a look at what the method code is returning - it should be returning a string [], otherwise you'll continue to get errors compiling.
In other words, if your method code ends with return xyz, and xyz is anything other than a string [], it won't work. As the compiler said, it has to be string [] to match the method it's overriding.
Tim
|