(Map<String, String> params)
| 786 | } |
| 787 | |
| 788 | protected List<String> paramMapToList(Map<String, String> params) { |
| 789 | List<String> paramList = new ArrayList<String>(); |
| 790 | if (params != null) { |
| 791 | for (Map.Entry<String, String> entry : params.entrySet()) { |
| 792 | paramList.add(entry.getKey() + "=" + entry.getValue()); |
| 793 | } |
| 794 | } |
| 795 | return paramList; |
| 796 | } |
| 797 | |
| 798 | /** |
| 799 | * Creates a clone of the current DAG |
no test coverage detected