go.mobile/bind/java: fix build

I really need to sort out a builder story for end-to-end apps.

LGTM=adonovan
R=adonovan
CC=golang-codereviews
https://golang.org/cl/136580043
This commit is contained in:
David Crawshaw
2014-09-12 10:53:03 -04:00
parent f0835e57bf
commit 3b555d82f6
+2 -1
View File
@@ -15,6 +15,7 @@ import (
"sync"
"unsafe"
"code.google.com/p/go.mobile/app"
"code.google.com/p/go.mobile/bind/seq"
)
@@ -71,7 +72,7 @@ func init() {
func init() {
app.JavaInit = func(javaVM uintptr) {
C.init_seq(javaVM)
C.init_seq(unsafe.Pointer(javaVM))
}
}