@@ -153,7 +153,6 @@ impl Client {
153153 /// # Remarks
154154 ///
155155 /// * Deallocates, not realtime safe.
156- #[ cfg( feature = "metadata" ) ]
157156 pub fn uuid ( & self ) -> j:: jack_uuid_t {
158157 unsafe {
159158 let mut uuid: j:: jack_uuid_t = Default :: default ( ) ;
@@ -168,12 +167,10 @@ impl Client {
168167 /// Get the numeric `uuid` of a client by name; returns None if client does not exist
169168 /// # Remarks
170169 /// * Not realtime safe
171- #[ cfg( feature = "metadata" ) ]
172170 pub fn uuid_of_client_by_name ( & self , name : & str ) -> Option < jack_sys:: jack_uuid_t > {
173171 Self :: uuid_of_client_by_name_raw ( self . raw ( ) , name)
174172 }
175173
176- #[ cfg( feature = "metadata" ) ]
177174 pub ( crate ) fn uuid_of_client_by_name_raw (
178175 raw : * mut jack_sys:: jack_client_t ,
179176 name : & str ,
@@ -224,7 +221,6 @@ impl Client {
224221 }
225222
226223 /// Get the name of a client by its numeric uuid.
227- #[ cfg( feature = "metadata" ) ]
228224 pub fn name_by_uuid ( & self , uuid : j:: jack_uuid_t ) -> Option < String > {
229225 let mut uuid_s = [ '\0' as _ ; 37 ] ; //jack_uuid_unparse expects an array of length 37
230226 unsafe {
@@ -637,7 +633,6 @@ impl Client {
637633 ///
638634 /// # Panics
639635 /// Calling this method more than once on any given client with cause a panic.
640- #[ cfg( feature = "metadata" ) ]
641636 pub fn register_property_change_handler < H : PropertyChangeHandler + ' static > (
642637 & mut self ,
643638 handler : H ,
0 commit comments