We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f713d5b commit ea92757Copy full SHA for ea92757
src/main/java/com/neuronrobotics/bowlerstudio/scripting/cadoodle/Paste.java
@@ -56,8 +56,10 @@ public ArrayList<CSG> process(CSG ic, int depth) {
56
CSG source = CaDoodleFile.getByName(back, from);
57
if (source.isGroupResult()) {
58
ArrayList<String> c = constituants(back, from);
59
- if(c.size()<1)
60
- throw new RuntimeException("A group result must have at least 1 constituants!");
+ if(c.size()<1) {
+ new RuntimeException("A group result must have at least 1 constituants!").printStackTrace();;
61
+ continue;
62
+ }
63
String newGroupName = CaDoodleFile.getByName(back, cpMap.get(from)).getName();
64
for (String s : c) {
65
CSG dest = CaDoodleFile.getByName(back, s);
0 commit comments