Changed serialVersionUID everywhere to 0L
This commit is contained in:
		@@ -25,7 +25,7 @@ public class Cache<T> implements Consumer<T>, Serializable {
 | 
				
			|||||||
	private transient Consumer<T>	processor;
 | 
						private transient Consumer<T>	processor;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final Logger	logger				= EnvoyLog.getLogger(Cache.class);
 | 
						private static final Logger	logger				= EnvoyLog.getLogger(Cache.class);
 | 
				
			||||||
	private static final long	serialVersionUID	= 0L;
 | 
						private static final long	serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	 * Adds an element to the cache.
 | 
						 * Adds an element to the cache.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -81,7 +81,7 @@ public class Color extends java.awt.Color {
 | 
				
			|||||||
	 */
 | 
						 */
 | 
				
			||||||
	public static final Color blue = new Color(0, 0, 255);
 | 
						public static final Color blue = new Color(0, 0, 255);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final long serialVersionUID = -9166233199998257344L;
 | 
						private static final long serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	public Color(java.awt.Color other) { this(other.getRGB()); }
 | 
						public Color(java.awt.Color other) { this(other.getRGB()); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -65,7 +65,7 @@ public class LoginDialog extends JDialog {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	private static final ClientConfig	config				= ClientConfig.getInstance();
 | 
						private static final ClientConfig	config				= ClientConfig.getInstance();
 | 
				
			||||||
	private static final Logger			logger				= EnvoyLog.getLogger(LoginDialog.class);
 | 
						private static final Logger			logger				= EnvoyLog.getLogger(LoginDialog.class);
 | 
				
			||||||
	private static final long			serialVersionUID	= 0L;
 | 
						private static final long			serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	 * Displays a dialog enabling the user to enter their user name and password.
 | 
						 * Displays a dialog enabling the user to enter their user name and password.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,7 +14,7 @@ import envoy.client.ui.Theme;
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
public class PrimaryScrollPane extends JScrollPane {
 | 
					public class PrimaryScrollPane extends JScrollPane {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final long serialVersionUID = -4786837444056228439L;
 | 
						private static final long serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private int		verticalScrollBarMaximum	= getVerticalScrollBar().getMaximum();
 | 
						private int		verticalScrollBarMaximum	= getVerticalScrollBar().getMaximum();
 | 
				
			||||||
	private boolean	chatOpened					= false;
 | 
						private boolean	chatOpened					= false;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -16,7 +16,7 @@ import javax.swing.border.EmptyBorder;
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
public class PrimaryTextArea extends JTextArea {
 | 
					public class PrimaryTextArea extends JTextArea {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final long	serialVersionUID	= 0L;
 | 
						private static final long	serialVersionUID = 0L;
 | 
				
			||||||
	private int					arcSize;
 | 
						private int					arcSize;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,7 +24,7 @@ import envoy.data.User.UserStatus;
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
public class UserListRenderer extends JLabel implements ListCellRenderer<User> {
 | 
					public class UserListRenderer extends JLabel implements ListCellRenderer<User> {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final long serialVersionUID = 5164417379767181198L;
 | 
						private static final long serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	 * {@inheritDoc}
 | 
						 * {@inheritDoc}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,7 +30,7 @@ public class GeneralSettingsPanel extends SettingsPanel {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	private static final String[]	items				= { "onCloseMode", "enterToSend" };
 | 
						private static final String[]	items				= { "onCloseMode", "enterToSend" };
 | 
				
			||||||
	private static final Logger		logger				= EnvoyLog.getLogger(GeneralSettingsPanel.class);
 | 
						private static final Logger		logger				= EnvoyLog.getLogger(GeneralSettingsPanel.class);
 | 
				
			||||||
	private static final long		serialVersionUID	= 0L;
 | 
						private static final long		serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	 * This is the constructor for the General class. Here the user can set general
 | 
						 * This is the constructor for the General class. Here the user can set general
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -39,7 +39,7 @@ public class ThemeCustomizationPanel extends SettingsPanel {
 | 
				
			|||||||
	private final Insets	insets	= new Insets(5, 5, 5, 5);
 | 
						private final Insets	insets	= new Insets(5, 5, 5, 5);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final Logger	logger				= EnvoyLog.getLogger(ThemeCustomizationPanel.class);
 | 
						private static final Logger	logger				= EnvoyLog.getLogger(ThemeCustomizationPanel.class);
 | 
				
			||||||
	private static final long	serialVersionUID	= 0L;
 | 
						private static final long	serialVersionUID = 0L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	 * Initializes a {@link ThemeCustomizationPanel} that enables the user to change
 | 
						 * Initializes a {@link ThemeCustomizationPanel} that enables the user to change
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user