Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalt committed Sep 26, 2024
1 parent d8f42ab commit 3c4a8ef
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/mayaUsd/fileio/jobs/jobArgs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,7 @@ UsdMayaJobExportArgs::UsdMayaJobExportArgs(
, ignoreWarnings(extractBoolean(userArgs, UsdMayaJobExportArgsTokens->ignoreWarnings))
, includeEmptyTransforms(
extractBoolean(userArgs, UsdMayaJobExportArgsTokens->includeEmptyTransforms))
, isDuplicating(
extractBoolean(userArgs, UsdMayaJobExportArgsTokens->isDuplicating))
, isDuplicating(extractBoolean(userArgs, UsdMayaJobExportArgsTokens->isDuplicating))
, materialCollectionsPath(
extractAbsolutePath(userArgs, UsdMayaJobExportArgsTokens->materialCollectionsPath))
, materialsScopeName(_GetMaterialsScopeName(
Expand Down Expand Up @@ -842,8 +841,7 @@ std::ostream& operator<<(std::ostream& out, const UsdMayaJobExportArgs& exportAr
<< "file: " << exportArgs.file << std::endl
<< "ignoreWarnings: " << TfStringify(exportArgs.ignoreWarnings) << std::endl
<< "includeEmptyTransforms: " << TfStringify(exportArgs.includeEmptyTransforms)
<< "isDuplicating: " << TfStringify(exportArgs.isDuplicating)
<< std::endl;
<< "isDuplicating: " << TfStringify(exportArgs.isDuplicating) << std::endl;
out << "includeAPINames (" << exportArgs.includeAPINames.size() << ")" << std::endl;
for (const std::string& includeAPIName : exportArgs.includeAPINames) {
out << " " << includeAPIName << std::endl;
Expand Down

0 comments on commit 3c4a8ef

Please sign in to comment.