Changed serialVersionUID everywhere to 0L
This commit is contained in:
		@@ -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()); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user