File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
jbbp/src/main/java/com/igormaznitsa/jbbp/mapper Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,6 @@ public static List<MappedFieldRecord> findAffectedFields(final Object instance)
316316 while (current != null ) {
317317 final String packageName = current .getPackage ().getName ();
318318 if (packageName .startsWith ("java." )
319- || packageName .startsWith ("com.sun." )
320319 || packageName .startsWith ("javax." )
321320 || packageName .startsWith ("android." )
322321 ) {
@@ -330,12 +329,6 @@ public static List<MappedFieldRecord> findAffectedFields(final Object instance)
330329 for (Field mappingField : processingClazz .getDeclaredFields ()) {
331330 final int fieldModifiers = mappingField .getModifiers ();
332331
333- if (Modifier .isTransient (fieldModifiers )
334- || Modifier .isStatic (fieldModifiers )
335- || Modifier .isFinal (fieldModifiers )) {
336- continue ;
337- }
338-
339332 final Bin fieldAnno = mappingField .getAnnotation (Bin .class );
340333 final Bin mappedAnno ;
341334 if ((fieldAnno == null && defaultAnno == null ) || mappingField .getName ().indexOf ('$' ) >= 0 ) {
You can’t perform that action at this time.
0 commit comments