Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved WebVertex.setCostFrom NPE

Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,770
Code:
java.lang.NullPointerException
 at app.WbA.this(pg:2895)
 at app.WbA.goto(pg:6041)
 at app.WbA.int(pg:2598)
 at app.WbA.this(pg:4339)
 at app.WbA.goto(pg:5310)
 at app.AaA.put(pg:3540)
 at app.AbA.goto(pg:6331)
 at com.runemate.game.api.hybrid.location.navigation.web.WebVertex.setCostFrom(nrb:192)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.goto(tzb:90)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(tzb:249)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(tzb:91)
 at com.runemate.api.Walking.walkTo(Walking.java:78)
 at com.runemate.maxiscripts.looping.woodcut.MaxiWoodcutter.onLoop(MaxiWoodcutter.java:190)
 at com.runemate.game.api.script.framework.LoopingScript.run(btb:87)
 at com.runemate.game.api.script.framework.AbstractScript.start(hvb:207)
 at app.Fn.run(jtb:14)
@Cloud Occurs on this line
path = web.getPathBuilder().buildTo(c)
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Code:
java.lang.NullPointerException
 at app.WbA.this(pg:2895)
 at app.WbA.goto(pg:6041)
 at app.WbA.int(pg:2598)
 at app.WbA.this(pg:4339)
 at app.WbA.goto(pg:5310)
 at app.AaA.put(pg:3540)
 at app.AbA.goto(pg:6331)
 at com.runemate.game.api.hybrid.location.navigation.web.WebVertex.setCostFrom(nrb:192)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.goto(tzb:90)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(tzb:249)
 at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(tzb:91)
 at com.runemate.api.Walking.walkTo(Walking.java:78)
 at com.runemate.maxiscripts.looping.woodcut.MaxiWoodcutter.onLoop(MaxiWoodcutter.java:190)
 at com.runemate.game.api.script.framework.LoopingScript.run(btb:87)
 at com.runemate.game.api.script.framework.AbstractScript.start(hvb:207)
 at app.Fn.run(jtb:14)
@Cloud Occurs on this line
path = web.getPathBuilder().buildTo(c)
Is that stack trace from the most recent build?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
It occurred 40 minutes ago
Well it most definitely occurred from within Guava's local caches so it's not something I can fix. I'm going to update all of our maven dependencies and hopefully that'll take care of it. It's the first I've seen of it so it's probably a really rare situation.
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,044
Well it most definitely occurred from within Guava's local caches so it's not something I can fix. I'm going to update all of our maven dependencies and hopefully that'll take care of it. It's the first I've seen of it so it's probably a really rare situation.
Great call. Exception logs was one of the best features we've implemented to date. :D Marking as resolved for now.
 
Top