Skip to content

Commit c5610f5

Browse files
committed
upgrade the android studio to 2.0.0 beta 5
1 parent 9ae3fb4 commit c5610f5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.0.0-alpha8'
8+
classpath 'com.android.tools.build:gradle:2.0.0-beta5'
99
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
1111
// NOTE: Do not place your application dependencies here; they belong

lesscode-core/src/main/java/com/jayfeng/lesscode/core/ToastLess.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ public final class ToastLess {
1010

1111
public static void $(Context context, String message) {
1212
Toast.makeText(context.getApplicationContext(), message, Toast.LENGTH_SHORT).show();
13-
};
13+
}
1414

1515
public static void $(Context context, int stringId) {
1616
Toast.makeText(context.getApplicationContext(), stringId, Toast.LENGTH_SHORT).show();
17-
};
17+
}
1818

1919
}

0 commit comments

Comments
 (0)