summaryrefslogtreecommitdiff
path: root/gnu/classpath/jdwp/processor/PacketProcessor.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/classpath/jdwp/processor/PacketProcessor.java')
-rw-r--r--gnu/classpath/jdwp/processor/PacketProcessor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/classpath/jdwp/processor/PacketProcessor.java b/gnu/classpath/jdwp/processor/PacketProcessor.java
index c4818aed8..785297c10 100644
--- a/gnu/classpath/jdwp/processor/PacketProcessor.java
+++ b/gnu/classpath/jdwp/processor/PacketProcessor.java
@@ -1,6 +1,6 @@
/* PacketProcessor.java -- a thread which processes command packets
from the debugger
- Copyright (C) 2005, 2006 Free Software Foundation
+ Copyright (C) 2005, 2006, 2013 Free Software Foundation
This file is part of GNU Classpath.
@@ -63,7 +63,7 @@ import java.security.PrivilegedAction;
* @author Keith Seitz (keiths@redhat.com)
*/
public class PacketProcessor
- implements PrivilegedAction
+ implements PrivilegedAction<Void>
{
// The connection to the debugger
private JdwpConnection _connection;
@@ -135,7 +135,7 @@ public class PacketProcessor
* Main run routine for this thread. Will loop getting packets
* from the connection and processing them.
*/
- public Object run ()
+ public Void run ()
{
// Notify initialization thread (gnu.classpath.jdwp.Jdwp) that
// the PacketProcessor thread is ready.