File tree 2 files changed +0
-21
lines changed
2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -55,15 +55,6 @@ STDOUT.
55
55
This allows changing the history! This mode is for special use only, for
56
56
instance to remove copyrighted or private data.
57
57
58
- -r, \- -remove-deleted
59
- : Deprecated. Remove deleted objects from the output. This is now the
60
- default if your input file is a normal OSM data file ('.osm').
61
-
62
- -s, \- -simplify
63
- : Deprecated. Only write the last version of any object to the output.
64
- This is now the default if your input file is a normal OSM data file
65
- ('.osm').
66
-
67
58
68
59
@MAN_COMMON_OPTIONS@
69
60
@MAN_PROGRESS_OPTIONS@
Original file line number Diff line number Diff line change @@ -58,9 +58,7 @@ bool CommandApplyChanges::setup(const std::vector<std::string>& arguments) {
58
58
po::options_description opts_cmd{" COMMAND OPTIONS" };
59
59
opts_cmd.add_options ()
60
60
(" change-file-format" , po::value<std::string>(), " Format of the change file(s)" )
61
- (" simplify,s" , " Simplify change (deprecated)" )
62
61
(" redact" , " Redact (patch) OSM files" )
63
- (" remove-deleted,r" , " Remove deleted objects from output (deprecated)" )
64
62
(" with-history,H" , " Apply changes to history file" )
65
63
(" locations-on-ways" , " Expect and update locations on ways" )
66
64
;
@@ -136,16 +134,6 @@ bool CommandApplyChanges::setup(const std::vector<std::string>& arguments) {
136
134
m_output_file.set_has_multiple_object_versions (true );
137
135
}
138
136
139
- if (vm.count (" simplify" )) {
140
- warning (" -s, --simplify option is deprecated. Please see manual page.\n " );
141
- m_with_history = false ;
142
- }
143
-
144
- if (vm.count (" remove-deleted" )) {
145
- warning (" -r, --remove-deleted option is deprecated. Please see manual page.\n " );
146
- m_with_history = false ;
147
- }
148
-
149
137
return true ;
150
138
}
151
139
You can’t perform that action at this time.
0 commit comments