Merge pull request #127 from informatik-ag-ngl/b/serialVersionUID

Changed serialVersionUID everywhere to 0L
This commit is contained in:
delvh 2020-03-26 17:29:42 +01:00 committed by GitHub
commit 1c4fb7267a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -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()); }

View File

@ -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;

View File

@ -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}