This commit is contained in:
Downforce Agent 2024-08-12 22:58:47 -05:00
parent e7e0111f48
commit d65d2145cf
2 changed files with 13 additions and 5 deletions

View File

@ -9,8 +9,7 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="cf74c012-cc69-4732-ac79-9ddfcbf803ee" name="Changes" comment="back from taco hell"> <list default="true" id="cf74c012-cc69-4732-ac79-9ddfcbf803ee" name="Changes" comment="cli args handling WIP">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" beforeDir="false" afterPath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" beforeDir="false" afterPath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
@ -107,7 +106,15 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1723520355301</updated> <updated>1723520355301</updated>
</task> </task>
<option name="localTasksCounter" value="6" /> <task id="LOCAL-00006" summary="cli args handling WIP">
<option name="closed" value="true" />
<created>1723521447461</created>
<option name="number" value="00006" />
<option name="presentableId" value="LOCAL-00006" />
<option name="project" value="LOCAL" />
<updated>1723521447461</updated>
</task>
<option name="localTasksCounter" value="7" />
<servers /> <servers />
</component> </component>
<component name="VcsManagerConfiguration"> <component name="VcsManagerConfiguration">
@ -117,6 +124,7 @@
<MESSAGE value="rebase; move to package, prepare header read io" /> <MESSAGE value="rebase; move to package, prepare header read io" />
<MESSAGE value="brb, eating" /> <MESSAGE value="brb, eating" />
<MESSAGE value="back from taco hell" /> <MESSAGE value="back from taco hell" />
<option name="LAST_COMMIT_MESSAGE" value="back from taco hell" /> <MESSAGE value="cli args handling WIP" />
<option name="LAST_COMMIT_MESSAGE" value="cli args handling WIP" />
</component> </component>
</project> </project>

View File

@ -152,7 +152,7 @@ public class standalone {
} }
private static void setOperation(String str) { private static void setOperation(String str) {
if (!operation.isEmpty()) {System.out.println("WARNING: duplicate operation " + str + " replaces previous argument \"" + operation + "\".");} if (!operation.isEmpty() && verbosity != Verbosities.QUIET) {System.out.println("WARNING: duplicate operation " + str + " replaces previous argument \"" + operation + "\".");}
operation = str; operation = str;
} }