This commit is contained in:
nora 2020-12-05 14:53:25 +01:00
parent e6088b3547
commit c7dfdf6f47
6 changed files with 0 additions and 39 deletions

View file

@ -1,13 +0,0 @@
<component name="libraryTable">
<library name="Maven: junit:junit:4.13.1">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1-javadoc.jar!/" />
</JAVADOC>
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1-sources.jar!/" />
</SOURCES>
</library>
</component>

View file

@ -1,13 +0,0 @@
<component name="libraryTable">
<library name="Maven: org.hamcrest:hamcrest-core:1.3">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar!/" />
</JAVADOC>
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar!/" />
</SOURCES>
</library>
</component>

View file

@ -11,7 +11,5 @@
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.13.1" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
</component> </component>
</module> </module>

View file

@ -7,14 +7,6 @@
<groupId>com.github.nilstrieb</groupId> <groupId>com.github.nilstrieb</groupId>
<artifactId>UMLClassParser</artifactId> <artifactId>UMLClassParser</artifactId>
<version>0.9-SNAPSHOT</version> <version>0.9-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties> <properties>
<maven.compiler.source>14</maven.compiler.source> <maven.compiler.source>14</maven.compiler.source>

View file

@ -23,7 +23,6 @@ public class UMLField {
String[] formattedSplit = formatted.split(";"); String[] formattedSplit = formatted.split(";");
if(!manager.isIgnoreEcapsulation()) { if(!manager.isIgnoreEcapsulation()) {
System.out.println("not ignore");
this.encapsulation = switch (formattedSplit[0]) { this.encapsulation = switch (formattedSplit[0]) {
case "+" -> "public "; case "+" -> "public ";
case "-" -> "private "; case "-" -> "private ";

View file

@ -44,8 +44,6 @@ public class UMLManager {
classes.add(new UMLClass(text, packageString, this)); classes.add(new UMLClass(text, packageString, this));
} }
classes.forEach(e -> System.out.println(e.toString()));
for (UMLClass c : classes) { for (UMLClass c : classes) {
try { try {
System.err.println(packagePath + "/" + c.getName() + ".java"); System.err.println(packagePath + "/" + c.getName() + ".java");