wuxw
2022-09-19 baffc2bd369c90da6d3fab5146d0433eafd8186c
java110-doc/src/main/java/com/java110/doc/registrar/Java110CmdDocDiscoveryRegistrar.java
@@ -102,13 +102,8 @@
                    String beanName = getListenerName(attributes, beanDefinition);
                    CmdDocDto cmdDocDto = new CmdDocDto();
                    Class<?> clazz = null;
                    try {
                        clazz = Class.forName(beanDefinition.getBeanClassName());
                    } catch (ClassNotFoundException e) {
                        throw new RuntimeException(e);
                    }
                    cmdDocDto.setCmdClass(clazz);
                    cmdDocDto.setCmdClass(beanDefinition.getBeanClassName());
                    cmdDocDto.setDescription(attributes.get("description").toString());
                    cmdDocDto.setAuthor(attributes.get("author").toString());
                    cmdDocDto.setResource(attributes.get("resource").toString());