Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some unnecessary pub modifiers (#50) #12445

Merged
merged 1 commit into from Jul 14, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Remove some unnecessary pub modifiers (#50)

  • Loading branch information
zakorgy committed Jul 14, 2016
commit aaf21dab4f3063453b00dc0761077e5fa2ab7033
@@ -76,7 +76,7 @@ impl BluetoothRemoteGATTCharacteristic {
global_ref.as_window().bluetooth_thread()
}

pub fn get_instance_id(&self) -> String {
fn get_instance_id(&self) -> String {
self.instanceID.clone()
}
}
@@ -63,7 +63,7 @@ impl BluetoothRemoteGATTDescriptor {
global_ref.as_window().bluetooth_thread()
}

pub fn get_instance_id(&self) -> String {
fn get_instance_id(&self) -> String {
self.instanceID.clone()
}
}
@@ -63,7 +63,7 @@ impl BluetoothRemoteGATTService {
global_ref.as_window().bluetooth_thread()
}

pub fn get_instance_id(&self) -> String {
fn get_instance_id(&self) -> String {
self.instanceID.clone()
}
}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.