src/jdk.compiler/share/classes/com/sun/source/util/DocTreeScanner.java
changeset 52487 5d1d07b72f15
parent 48028 9e022f580a9d
child 57723 54a04db114d8
equal deleted inserted replaced
52486:6f5948597697 52487:5d1d07b72f15
   467      * {@inheritDoc} This implementation returns {@code null}.
   467      * {@inheritDoc} This implementation returns {@code null}.
   468      *
   468      *
   469      * @param node  {@inheritDoc}
   469      * @param node  {@inheritDoc}
   470      * @param p  {@inheritDoc}
   470      * @param p  {@inheritDoc}
   471      * @return the result of scanning
   471      * @return the result of scanning
       
   472      * @since 12
       
   473      */
       
   474     @Override
       
   475     public R visitSystemProperty(SystemPropertyTree node, P p) {
       
   476         return null;
       
   477     }
       
   478 
       
   479     /**
       
   480      * {@inheritDoc} This implementation returns {@code null}.
       
   481      *
       
   482      * @param node  {@inheritDoc}
       
   483      * @param p  {@inheritDoc}
       
   484      * @return the result of scanning
   472      */
   485      */
   473     @Override
   486     @Override
   474     public R visitText(TextTree node, P p) {
   487     public R visitText(TextTree node, P p) {
   475         return null;
   488         return null;
   476     }
   489     }