Nix unused imports, regen services.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5203 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-06-29 12:37:32 +00:00
parent 09722edcd7
commit 2a598b49af
9 changed files with 2 additions and 20 deletions
@@ -23,11 +23,8 @@ package com.threerings.admin.client;
import java.util.HashMap;
import com.samskivert.util.StringUtil;
import com.threerings.presents.client.Client;
import com.threerings.presents.client.ClientAdapter;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.DObjectManager;
import com.threerings.presents.dobj.ObjectAccessException;
import com.threerings.presents.dobj.Subscriber;
@@ -25,20 +25,15 @@ import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.lang.reflect.Field;
import java.util.BitSet;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
import com.samskivert.swing.ObjectEditorTable;
import com.samskivert.swing.event.CommandEvent;
import com.samskivert.util.ClassUtil;
import com.samskivert.util.ComparableArrayList;
import com.samskivert.util.ListUtil;
import com.threerings.presents.dobj.AttributeChangeListener;
import com.threerings.presents.dobj.AttributeChangedEvent;
@@ -49,8 +44,6 @@ import com.threerings.presents.dobj.EntryRemovedEvent;
import com.threerings.presents.dobj.EntryUpdatedEvent;
import com.threerings.presents.dobj.SetListener;
import static com.threerings.presents.Log.log;
/**
* Allows simple editing of DSets within a distributed object.
*/
@@ -31,11 +31,9 @@ import java.lang.reflect.Field;
import javax.swing.BorderFactory;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import com.samskivert.swing.HGroupLayout;
import com.samskivert.util.ObjectUtil;
import com.samskivert.util.StringUtil;
import com.threerings.presents.dobj.AttributeChangeListener;
import com.threerings.presents.dobj.AttributeChangedEvent;
@@ -25,7 +25,6 @@ import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import javax.swing.BorderFactory;
import javax.swing.JPanel;
import com.samskivert.swing.ScrollablePanel;
import com.samskivert.swing.VGroupLayout;
@@ -25,7 +25,6 @@ import com.threerings.admin.client.AdminService;
import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent;
import com.threerings.presents.net.Transport;
/**
* Provides the implementation of the {@link AdminService} interface
@@ -24,14 +24,13 @@ package com.threerings.admin.server;
import com.threerings.admin.client.AdminService;
import com.threerings.admin.data.AdminMarshaller;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException;
/**
* Dispatches requests to the {@link AdminProvider}.
*/
public class AdminDispatcher extends InvocationDispatcher
public class AdminDispatcher extends InvocationDispatcher<AdminMarshaller>
{
/**
* Creates a dispatcher that may be registered to dispatch invocation
@@ -43,7 +42,7 @@ public class AdminDispatcher extends InvocationDispatcher
}
@Override // documentation inherited
public InvocationMarshaller createMarshaller ()
public AdminMarshaller createMarshaller ()
{
return new AdminMarshaller();
}
@@ -89,7 +89,6 @@ public class DatabaseConfigRegistry extends ConfigRegistry
this(ctx, invoker, node, false);
}
/**
* Creates a configuration registry and prepares it for operation.
*
@@ -29,7 +29,6 @@ import com.samskivert.io.PersistenceException;
import com.samskivert.jdbc.depot.PersistenceContext;
import com.samskivert.util.Invoker;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.Streamable;
import com.threerings.util.StreamableTuple;
@@ -78,7 +78,6 @@ public class ConfigRecord extends PersistentRecord
@Column(name="VALUE", type="TEXT")
public String value;
/**
* An empty constructor for unmarshalling.
*/