mirror of https://github.com/dspinellis/UMLGraph
Just a variable name change, since the documentation says "relationship" and not "association"
This commit is contained in:
parent
b8740e3567
commit
d6c2a57086
|
|
@ -85,7 +85,7 @@ public class UmlGraph {
|
|||
for (int i = 0; i < classes.length; i++) {
|
||||
c.printRelations(classes[i]);
|
||||
}
|
||||
if(opt.inferAssociations)
|
||||
if(opt.inferRelationships)
|
||||
c.printInferredRelations(classes);
|
||||
if(opt.inferDependencies)
|
||||
c.printInferredDependencies(classes);
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ public class UmlGraph {
|
|||
for (int i = 0; i < classes.length; i++) {
|
||||
c.printRelations(classes[i]);
|
||||
}
|
||||
if(opt.inferAssociations)
|
||||
if(opt.inferRelationships)
|
||||
c.printInferredRelations(classes);
|
||||
if(opt.inferDependencies)
|
||||
c.printInferredDependencies(classes);
|
||||
|
|
|
|||
Loading…
Reference in New Issue