Skip to content

Commit 28fee75

Browse files
committed
Updated dependancies to their latest versions
1 parent b31f27f commit 28fee75

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

app/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
<dependency>
2929
<groupId>com.google.code.gson</groupId>
3030
<artifactId>gson</artifactId>
31-
<version>2.1</version>
31+
<version>2.2.2</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>com.github.rtyley</groupId>
3535
<artifactId>roboguice-sherlock</artifactId>
36-
<version>1.4</version>
36+
<version>1.5</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>org.roboguice</groupId>
@@ -48,26 +48,26 @@
4848
</dependency>
4949
<dependency>
5050
<groupId>com.actionbarsherlock</groupId>
51-
<artifactId>library</artifactId>
51+
<artifactId>actionbarsherlock</artifactId>
5252
<version>${abs.version}</version>
5353
<type>jar</type>
5454
<scope>provided</scope>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.github.kevinsawicki</groupId>
5858
<artifactId>http-request</artifactId>
59-
<version>2.1</version>
59+
<version>3.0</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>com.viewpagerindicator</groupId>
6363
<artifactId>library</artifactId>
64-
<version>2.3.1</version>
64+
<version>2.4.1</version>
6565
<type>apklib</type>
6666
</dependency>
6767
<dependency>
6868
<groupId>com.nineoldandroids</groupId>
6969
<artifactId>library</artifactId>
70-
<version>2.2.0</version>
70+
<version>2.4.0</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.github.kevinsawicki</groupId>
@@ -77,25 +77,25 @@
7777
<dependency>
7878
<groupId>com.github.kevinsawicki</groupId>
7979
<artifactId>wishlist</artifactId>
80-
<version>0.4</version>
80+
<version>0.6</version>
8181
<type>apklib</type>
8282
</dependency>
8383
<dependency>
8484
<groupId>junit</groupId>
8585
<artifactId>junit</artifactId>
86-
<version>4.10</version>
86+
<version>4.11</version>
8787
<scope>test</scope>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.hamcrest</groupId>
9191
<artifactId>hamcrest-library</artifactId>
92-
<version>1.3.RC2</version>
92+
<version>1.3</version>
9393
<scope>test</scope>
9494
</dependency>
9595
<dependency>
9696
<groupId>org.mockito</groupId>
9797
<artifactId>mockito-core</artifactId>
98-
<version>1.9.0</version>
98+
<version>1.9.5</version>
9999
<scope>test</scope>
100100
</dependency>
101101
</dependencies>

app/src/main/java/com/donnfelker/android/bootstrap/ui/AlternatingColorListAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ public AlternatingColorListAdapter(final int layoutId,
5959
@Override
6060
protected void update(final int position, final V item) {
6161
if (position % 2 != 0)
62-
view.setBackgroundResource(primaryResource);
62+
updater.view.setBackgroundResource(primaryResource);
6363
else
64-
view.setBackgroundResource(secondaryResource);
64+
updater.view.setBackgroundResource(secondaryResource);
6565
}
6666
}

0 commit comments

Comments
 (0)