Skip to content

Commit

Permalink
run makeprops.py
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Oct 14, 2024
1 parent 8eb84cf commit 4790517
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/src/Ice/PropertyNames.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const Property IceLocatorDiscoveryPropsData[] =
Property{"Address", "", false, false, nullptr},
Property{"Port", "4061", false, false, nullptr},
Property{"Interface", "", false, false, nullptr},
Property{"InstanceName", "IceLocatorDiscovery", false, false, nullptr},
Property{"InstanceName", "", false, false, nullptr},
Property{"Trace.Lookup", "0", false, false, nullptr}
};

Expand Down
2 changes: 1 addition & 1 deletion csharp/src/Ice/Internal/PropertyNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public sealed class PropertyNames
new(pattern: @"Address", usesRegex: false, defaultValue: "", deprecated: false, propertyArray: null),
new(pattern: @"Port", usesRegex: false, defaultValue: "4061", deprecated: false, propertyArray: null),
new(pattern: @"Interface", usesRegex: false, defaultValue: "", deprecated: false, propertyArray: null),
new(pattern: @"InstanceName", usesRegex: false, defaultValue: "IceLocatorDiscovery", deprecated: false, propertyArray: null),
new(pattern: @"InstanceName", usesRegex: false, defaultValue: "", deprecated: false, propertyArray: null),
new(pattern: @"Trace.Lookup", usesRegex: false, defaultValue: "0", deprecated: false, propertyArray: null)
]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ final class PropertyNames
new Property("Address", false, "", false, null),
new Property("Port", false, "4061", false, null),
new Property("Interface", false, "", false, null),
new Property("InstanceName", false, "IceLocatorDiscovery", false, null),
new Property("InstanceName", false, "", false, null),
new Property("Trace.Lookup", false, "0", false, null)
});

Expand Down

0 comments on commit 4790517

Please sign in to comment.