Prefix local vars with "_"

This commit is contained in:
Markus Doits 2011-01-09 19:16:22 +00:00
parent a29dfc0add
commit 9e089f03b6

View File

@ -50,9 +50,9 @@ public class ApgService extends Service {
} }
if (!pArgs.isEmpty()) { if (!pArgs.isEmpty()) {
Iterator<String> iter = pArgs.keySet().iterator(); Iterator<String> _iter = pArgs.keySet().iterator();
while (iter.hasNext()) { while (_iter.hasNext()) {
warnings.add("Unknown key: " + iter.next()); warnings.add("Unknown key: " + _iter.next());
} }
} }
@ -61,24 +61,24 @@ public class ApgService extends Service {
return false; return false;
} }
Preferences mPreferences = Preferences.getPreferences(getBaseContext(), true); Preferences _mPreferences = Preferences.getPreferences(getBaseContext(), true);
InputStream inStream = new ByteArrayInputStream(msg.getBytes()); InputStream _inStream = new ByteArrayInputStream(msg.getBytes());
InputData in = new InputData(inStream, 9999); InputData _in = new InputData(_inStream, 9999);
OutputStream out = new ByteArrayOutputStream(); OutputStream _out = new ByteArrayOutputStream();
long enc_keys[] = {}; long _enc_keys[] = {};
Apg.initialize(getApplicationContext()); Apg.initialize(getApplicationContext());
try { try {
Apg.encrypt(getApplicationContext(), // context Apg.encrypt(getApplicationContext(), // context
in, // input stream _in, // input stream
out, // output stream _out, // output stream
true, // armored true, // armored
enc_keys, // encryption keys _enc_keys, // encryption keys
0, // signature key 0, // signature key
null, // signature passphrase null, // signature passphrase
null, // progress null, // progress
mPreferences.getDefaultEncryptionAlgorithm(), // encryption _mPreferences.getDefaultEncryptionAlgorithm(), // encryption
mPreferences.getDefaultHashAlgorithm(), // hash _mPreferences.getDefaultHashAlgorithm(), // hash
Id.choice.compression.none, // compression Id.choice.compression.none, // compression
false, // mPreferences.getForceV3Signatures(), false, // mPreferences.getForceV3Signatures(),
passphrase // passPhrase passphrase // passPhrase
@ -92,7 +92,7 @@ public class ApgService extends Service {
} }
Log.d(TAG, "Encrypted"); Log.d(TAG, "Encrypted");
pReturn.putString("RESULT", out.toString()); pReturn.putString("RESULT", _out.toString());
return true; return true;
} }