Skip to content

Commit

Permalink
Moved namespace bindings so default namespace is first.
Browse files Browse the repository at this point in the history
This helps IDEs, so when they suggest elements, they don't suggest
use of a prefix, they suggest using no prefix.
  • Loading branch information
mbeckerle committed May 27, 2022
1 parent cd97ccb commit 55d4b32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ limitations under the License.
!$

<schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:dfdl="http://www.ogf.org/dfdl/dfdl-1.0/"
xmlns:$name;format="camel"$="urn:$name;format="camel"$"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ limitations under the License.
-->
!$

<testSuite suiteName="$name;format="Camel"$" description="$name;format="Camel"$ tests"
xmlns:dfdl="http://www.ogf.org/dfdl/dfdl-1.0/"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:tdml="http://www.ibm.com/xmlns/dfdl/testData"
<testSuite
suiteName="$name;format="Camel"$"
description="$name;format="Camel"$ tests"
xmlns="http://www.ibm.com/xmlns/dfdl/testData"
xmlns:tdml="http://www.ibm.com/xmlns/dfdl/testData"
xmlns:dfdl="http://www.ogf.org/dfdl/dfdl-1.0/"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
defaultRoundTrip="onePass">
Expand Down

0 comments on commit 55d4b32

Please sign in to comment.