mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8232078: Suppress warnings on non-serializable non-transient instance fields in java.datatransfer
Reviewed-by: serb
This commit is contained in:
parent
728644f37d
commit
2918f86d2b
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -346,9 +346,9 @@ ClassNotFoundException {
|
||||||
return newObj;
|
return newObj;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String primaryType;
|
private transient String primaryType;
|
||||||
private String subType;
|
private transient String subType;
|
||||||
private MimeTypeParameterList parameters;
|
private transient MimeTypeParameterList parameters;
|
||||||
|
|
||||||
// below here be scary parsing related things
|
// below here be scary parsing related things
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue