make overriding method public

This commit is contained in:
Manu Sridharan 2017-05-24 14:43:00 -07:00
parent 11ff511d61
commit 9585aaf0a2
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public class DexDotUtil extends DotUtil {
* @return StringBuffer holding dot output representing G
* @throws WalaException
*/
private static <T> StringBuffer dotOutput(Graph<T> g, NodeDecorator<T> labels, String title) throws WalaException {
public static <T> StringBuffer dotOutput(Graph<T> g, NodeDecorator<T> labels, String title) throws WalaException {
StringBuffer result = new StringBuffer("digraph \"DirectedGraph\" {\n");
if (title != null) {