How do I call another static method?
i have public static String generateMutatedStringReduced(String source, double rate) on string mutatedDna
public Chromosome mutate() { String mutatedDna = GARandom.generateMutatedStringReduced(dna, 0.1);// 10% probability of change per character return new Chromosome(mutatedDna); }
i would also like to call on the string mutatedDna