Skip to content

Commit

Permalink
refine javadoc and delete apk directory
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleo committed Feb 5, 2013
1 parent e187d89 commit b2b218a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file removed apk/Emmagee.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions src/com/netease/qa/emmagee/activity/MainPageActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private void createNewFile() {
}

/**
* wait for test application started , timeout is 20s
* wait for test application started
*
* @param packageName
* package name of test application
Expand Down Expand Up @@ -171,7 +171,7 @@ private void waitForAppStart(String packageName) {
}

/**
* override return key to show a dialog
* show a dialog when click return key
*/
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
Expand Down
4 changes: 2 additions & 2 deletions src/com/netease/qa/emmagee/service/EmmageeService.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private void createResultCsv() {
}

/**
* create floating window
* create a floating window to show real-time data
*/
private void createFloatingWindow() {
SharedPreferences shared = getSharedPreferences("float_flag",
Expand Down Expand Up @@ -299,7 +299,7 @@ public void run() {
};

/**
* refresh the data showing in floating window
* refresh the performance data showing in floating window
*
* @throws FileNotFoundException
*
Expand Down
2 changes: 1 addition & 1 deletion src/com/netease/qa/emmagee/utils/CpuInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public ArrayList<String> getCpuRatioInfo() {
.format(((double) pidMemory / (double) totalMemorySize) * 100);
}

// whether certain device supports traffic statics
// whether certain device supports traffic statics or not
if (traffic == -1) {
EmmageeService.bw.write(mDateTime2 + "," + pMemory + ","
+ percent + "," + fMemory + "," + processCpuRatio
Expand Down
2 changes: 1 addition & 1 deletion src/com/netease/qa/emmagee/utils/MemoryInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class MemoryInfo {
+ MemoryInfo.class.getSimpleName();

/**
* read the total memory of certain device
* get total memory of certain device
*
* @return total memory of device
*/
Expand Down

0 comments on commit b2b218a

Please sign in to comment.