From c0269fcfa876b9c5cf309b2006462b4d09c5ef95 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期三, 28 七月 2021 18:09:02 +0800
Subject: [PATCH] 包名及目录修改

---
 MDownloadProvider/src/com/mozillaonline/providers/downloads/ui/DateSortedExpandableListAdapter.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/MDownloadProvider/src/com/mozillaonline/providers/downloads/ui/DateSortedExpandableListAdapter.java b/MDownloadProvider/src/com/mozillaonline/providers/downloads/ui/DateSortedExpandableListAdapter.java
index a1851f0..3ef7ad8 100644
--- a/MDownloadProvider/src/com/mozillaonline/providers/downloads/ui/DateSortedExpandableListAdapter.java
+++ b/MDownloadProvider/src/com/mozillaonline/providers/downloads/ui/DateSortedExpandableListAdapter.java
@@ -41,7 +41,7 @@
 public class DateSortedExpandableListAdapter implements ExpandableListAdapter {
     // Array for each of our bins.  Each entry represents how many items are
     // in that bin.
-    private int mItemMap[];
+    private int[] mItemMap;
     // This is our GroupCount.  We will have at most DateSorter.DAY_COUNT
     // bins, less if the user has no items in one or more bins.
     private int mNumberOfBins;
@@ -97,7 +97,7 @@
     private void buildMap() {
         // The cursor is sorted by date
         // The ItemMap will store the number of items in each bin.
-        int array[] = new int[DateSorter.DAY_COUNT];
+        int[] array = new int[DateSorter.DAY_COUNT];
         // Zero out the array.
         for (int j = 0; j < DateSorter.DAY_COUNT; j++) {
             array[j] = 0;

--
Gitblit v1.8.0