Skip to content
Snippets Groups Projects
Commit 51ebb20f authored by Jürgen Walter's avatar Jürgen Walter
Browse files

Changed DoF cross product helper access to static

parent ab86dc59
No related branches found
No related tags found
No related merge requests found
...@@ -50,10 +50,10 @@ public class DoFCrossProductHelper { ...@@ -50,10 +50,10 @@ public class DoFCrossProductHelper {
* @return List of DoF-combination. Each list element contains one possible * @return List of DoF-combination. Each list element contains one possible
* combination * combination
*/ */
public List<HashMap<DoF, String>> calculateCrossProduct(EntityMapping input) { public static List<HashMap<DoF, String>> calculateCrossProduct(EntityMapping input) {
this.possibleDofValues = getPossibleDofValues(input); DoFCrossProductHelper helper = new DoFCrossProductHelper();
List<HashMap<DoF, String>> result = recursiveCrossProduct(); helper.possibleDofValues = helper.getPossibleDofValues(input);
List<HashMap<DoF, String>> result = helper.recursiveCrossProduct();
return result; return result;
} }
......
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