jkozlov

Results 5 issues of jkozlov

``` Object[] array = {}; browse(new LJV(), array); ``` Graphviz Online doesn't render and reports an error: ```html in label of node n1 ```

### Proposal Can we add methods like: ```java // Set the same label for all objects of the given class public LJV setClassLabel(Class cz, String label); // Set a label...

``` java List list1 = new ArrayList(); List list2 = new ArrayList(); List list3 = new ArrayList(); List listOfLists = new ArrayList(); listOfLists.add(list1); listOfLists.add(list2); listOfLists.add(list3); assertThat(listOfLists).contains(list1, list2, list3); // Type...

``` java String[] arr = {"a", "b", "c"}; assertThat(arr).containsExactly("a", "b", "c"); // throws AssertionError ``` java.lang.AssertionError: expected: but was:

bug

There is an infinite recursion in `AbstractTychoMapping.modelHasProperty` if Tycho build is called with `-DforceContextQualifier`. Steps to reproduce: - Clone https://github.com/vogellacompany/tycho-example - Run `mvn clean verify -DskipTests -DforceContextQualifier=100500` - The build...