transient
fields in classes that do not implement java.io.Serializable
.
Example:
public class NonSerializableClass {
private transient String password; // warning: Field 'password' is marked 'transient', in non-Serializable class
}
After the quick-fix is applied:
public class NonSerializableClass {
private String password;
}