Returns true if the field is transient.
()
| 174 | /** Returns true if the field is transient. */ |
| 175 | |
| 176 | final boolean isTransient() { |
| 177 | return Modifier.isTransient(getModifiers()); |
| 178 | } |
| 179 | |
| 180 | @Override |
| 181 | public boolean equals(@Nullable Object obj) { |
nothing calls this directly
no test coverage detected