summaryrefslogtreecommitdiffstats
path: root/src/com/android/providers/downloads/DownloadFileInfo.java
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2009-01-20 10:08:46 -0800
committerJean-Baptiste Queru <jbq@google.com>2009-01-20 10:08:46 -0800
commitc6f5aad265cfc36a64cd2bdb5adf3cc9736bbd80 (patch)
tree2d90fcef05fa11b09532bd4b8f7e5238c15b643c /src/com/android/providers/downloads/DownloadFileInfo.java
parent326eef4b7f89ca56a86493ddc756f98c67ffe863 (diff)
downloadandroid_packages_providers_DownloadProvider-c6f5aad265cfc36a64cd2bdb5adf3cc9736bbd80.tar.gz
android_packages_providers_DownloadProvider-c6f5aad265cfc36a64cd2bdb5adf3cc9736bbd80.tar.bz2
android_packages_providers_DownloadProvider-c6f5aad265cfc36a64cd2bdb5adf3cc9736bbd80.zip
Match the official code style guide.
This fixes a number of style violations that weren't caught by automated tools and brings those files closer to compliance with the official style guide for this language.
Diffstat (limited to 'src/com/android/providers/downloads/DownloadFileInfo.java')
-rw-r--r--src/com/android/providers/downloads/DownloadFileInfo.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/com/android/providers/downloads/DownloadFileInfo.java b/src/com/android/providers/downloads/DownloadFileInfo.java
index 29cbd940..ce423880 100644
--- a/src/com/android/providers/downloads/DownloadFileInfo.java
+++ b/src/com/android/providers/downloads/DownloadFileInfo.java
@@ -22,13 +22,13 @@ import java.io.FileOutputStream;
* Stores information about the file in which a download gets saved.
*/
public class DownloadFileInfo {
- public DownloadFileInfo(String filename, FileOutputStream stream, int status) {
- this.filename = filename;
- this.stream = stream;
- this.status = status;
- }
+ String mFileName;
+ FileOutputStream mStream;
+ int mStatus;
- String filename;
- FileOutputStream stream;
- int status;
+ public DownloadFileInfo(String fileName, FileOutputStream stream, int status) {
+ mFileName = fileName;
+ mStream = stream;
+ mStatus = status;
+ }
}