Skip to content
Snippets Groups Projects
Commit a3c87f7e authored by tcarver's avatar tcarver
Browse files

change visibility of countOccurrences() and split()

parent 35125912
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ public class VCFRecord ...@@ -111,7 +111,7 @@ public class VCFRecord
return rec; return rec;
} }
private static int countOccurrences(final String str, final char search) protected static int countOccurrences(final String str, final char search)
{ {
int count = 0; int count = 0;
for(int i=0; i < str.length(); i++) for(int i=0; i < str.length(); i++)
...@@ -129,7 +129,7 @@ public class VCFRecord ...@@ -129,7 +129,7 @@ public class VCFRecord
* @param nsize * @param nsize
* @return * @return
*/ */
private static String[] split(final String argStr, final String splitChar, final int nsize) protected static String[] split(final String argStr, final String splitChar, final int nsize)
{ {
final String str[] = new String[nsize]; final String str[] = new String[nsize];
String value; String value;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment