public void addCategory()

in graph/src/main/java/org/apache/archiva/components/graph/base/SimpleNode.java [138:148]


    public void addCategory( Category category )
    {
        if ( this.categories == null )
        {
            this.categories = new ArrayList<>( );
        }
        if ( !this.categories.contains( category ) )
        {
            this.categories.add( category );
        }
    }