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 NPE at AbstractScript.stop(mqb:86) spam

Joined
Dec 10, 2014
Messages
3,332
Code:
java.lang.NullPointerException
at com.runemate.game.api.script.framework.AbstractScript.stop(mqb:86)
at com.runemate.game.api.script.framework.core.LoopingThread$LTExceptionHandler.uncaughtException(zub:7)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1057)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1052)
at com.sun.glass.ui.Application.reportException(Application.java:453)
at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
at com.sun.glass.ui.gtk.GtkApplication.lambda$null$49(GtkApplication.java:139)
at java.lang.Thread.run(Thread.java:745)
Seems to be similar to https://www.runemate.com/community/threads/java-lang-unsupportedoperationexception-spam.5749/ but I'm not sure if they're related.
@Cloud
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
The only way I could see this happening is if stop was invoked twice for some reason.
 
Actually there must of been another stacktrace that occurred directly before that one was printed.
 
Joined
Dec 10, 2014
Messages
3,332
The only way I could see this happening is if stop was invoked twice for some reason.
 
Actually there must of been another stacktrace that occurred directly before that one was printed.
Code:
java.lang.IndexOutOfBoundsException 
 at com.sun.javafx.scene.control.ReadOnlyUnbackedObservableList.subList(ReadOnlyUnbackedObservableList.java:136) 
 at javafx.collections.ListChangeListener$Change.getAddedSubList(ListChangeListener.java:242) 
 at com.sun.javafx.scene.control.behavior.ListViewBehavior.lambda$new$177(ListViewBehavior.java:269) 
 at javafx.collections.WeakListChangeListener.onChanged(WeakListChangeListener.java:88) 
 at com.sun.javafx.collections.ListListenerHelper$Generic.fireValueChangedEvent(ListListenerHelper.java:329) 
 at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:73) 
 at com.sun.javafx.scene.control.ReadOnlyUnbackedObservableList.callObservers(ReadOnlyUnbackedObservableList.java:75) 
 at javafx.scene.control.MultipleSelectionModelBase.clearAndSelect(MultipleSelectionModelBase.java:378) 
 at javafx.scene.control.ListView$ListViewBitSetSelectionModel.clearAndSelect(ListView.java:1403) 
 at com.sun.javafx.scene.control.behavior.CellBehaviorBase.simpleSelect(CellBehaviorBase.java:256) 
 at com.sun.javafx.scene.control.behavior.CellBehaviorBase.doSelect(CellBehaviorBase.java:220) 
 at com.sun.javafx.scene.control.behavior.CellBehaviorBase.mousePressed(CellBehaviorBase.java:150) 
 at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(BehaviorSkinBase.java:95) 
 at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(BehaviorSkinBase.java:89) 
 at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(CompositeEventHandler.java:218) 
 at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:80) 
 at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238) 
 at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191) 
 at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59) 
 at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58) 
 at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) 
 at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) 
 at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) 
 at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) 
 at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) 
 at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) 
 at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) 
 at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74) 
 at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54) 
 at javafx.event.Event.fireEvent(Event.java:198) 
 at javafx.scene.Scene$MouseHandler.process(Scene.java:3757) 
 at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3485) 
 at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1762) 
 at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2494) 
 at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:352) 
 at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:275) 
 at java.security.AccessController.doPrivileged(Native Method) 
 at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$354(GlassViewEventHandler.java:388) 
 at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.java:389) 
 at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:387) 
 at com.sun.glass.ui.View.handleMouseEvent(View.java:555) 
 at com.sun.glass.ui.View.notifyMouse(View.java:937) 
 at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method) 
 at com.sun.glass.ui.gtk.GtkApplication.lambda$null$49(GtkApplication.java:139) 
 at java.lang.Thread.run(Thread.java:745)
 
Top