This commit is contained in:
Tim Tersch
2020-08-27 11:00:44 +02:00
parent 661ed3e4ae
commit 467b773802

View File

@@ -282,7 +282,10 @@ public class Arrays {
* zum Beispiel <code>["+String 1","+String 2"]</code>.
*/
public String[] prefix( String[] pArray, String pPrefix ) {
return null;
for (int i = 0; i < pArray.length; i++) {
pArray[i] = pPrefix + pArray[i];
}
return pArray;
}
/**