Skip to content
Snippets Groups Projects
Commit 79b8e448 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

SampleValues has to be public in CheckerRunnerResult for Matlab.

Do to the way the matlab code works, the GenerateMatlabVariableDeclarations
is actually useless.  Thus, make SampleValues public so that the matlab code
can still do what it needs to do.

git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/branches/TableTool_javization@10666 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 4e3ab8c8
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ import java.util.Map;
*/
final public class CheckerRunnerResult {
public String Query;
Map<String, String> SampleValues;
public Map<String, String> SampleValues;
public String GenerateMatlabVariableDeclarations() {
StringBuilder ret = new StringBuilder();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment