From 359751db77aa296d6bf63768696b1cc0fafd50d9 Mon Sep 17 00:00:00 2001 From: Artur Dryomov Date: Wed, 17 Jul 2013 04:18:31 +0300 Subject: Clean up the codebase. * Fix licenses headers and footers once again. * Fix inspection warnings. * Fix typos. * Rename resources to follow the same style everywhere. Change-Id: I3ee60f4761446322bd34323f404354096292a086 --- .../impressremote/fragment/ComputerConnectionFragment.java | 6 +++--- .../org/libreoffice/impressremote/fragment/ComputersFragment.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'android/sdremote/src/org/libreoffice/impressremote/fragment') diff --git a/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputerConnectionFragment.java b/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputerConnectionFragment.java index 0f1c89ebde5a..ee9c75b4ed4c 100644 --- a/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputerConnectionFragment.java +++ b/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputerConnectionFragment.java @@ -171,7 +171,7 @@ public class ComputerConnectionFragment extends SherlockFragment implements Serv return LocalBroadcastManager.getInstance(aContext); } - public void setUpPinValidationInstructions(String aPin) { + private void setUpPinValidationInstructions(String aPin) { TextView aPinTextView = (TextView) getView().findViewById(R.id.text_pin); aPinTextView.setText(aPin); @@ -185,14 +185,14 @@ public class ComputerConnectionFragment extends SherlockFragment implements Serv aViewAnimator.setDisplayedChild(aViewAnimator.indexOfChild(aValidationLayout)); } - public void setUpPresentation() { + private void setUpPresentation() { Intent aIntent = Intents.buildSlideShowIntent(getActivity()); startActivity(aIntent); getActivity().finish(); } - public void setUpErrorMessage() { + private void setUpErrorMessage() { TextView aSecondaryMessageTextView = (TextView) getView().findViewById(R.id.text_secondary_error_message); aSecondaryMessageTextView.setText(buildSecondaryErrorMessage()); diff --git a/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputersFragment.java b/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputersFragment.java index 084e27c96178..11d28964a418 100644 --- a/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputersFragment.java +++ b/android/sdremote/src/org/libreoffice/impressremote/fragment/ComputersFragment.java @@ -163,7 +163,7 @@ public class ComputersFragment extends SherlockListFragment implements ServiceCo return LocalBroadcastManager.getInstance(aContext); } - public void loadComputers() { + private void loadComputers() { if (!isServiceBound()) { return; } -- cgit