()
| 31 | private final Protocol<Printer.Fn<?>> thePrinter; |
| 32 | |
| 33 | private static Unsafe getUnsafe() { |
| 34 | try { |
| 35 | |
| 36 | Field singleoneInstanceField = Unsafe.class.getDeclaredField("theUnsafe"); |
| 37 | singleoneInstanceField.setAccessible(true); |
| 38 | return (Unsafe) singleoneInstanceField.get(null); |
| 39 | |
| 40 | } catch (IllegalArgumentException | IllegalAccessException | NoSuchFieldException | SecurityException e) { |
| 41 | e.printStackTrace(); |
| 42 | } |
| 43 | return null; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | private final Parser.Config.Builder builder; |
no test coverage detected