Skip to content

Commit

Permalink
Added a testcase for the patternfill (see #25), and
Browse files Browse the repository at this point in the history
found that the matrix has to be applied somehow.
  • Loading branch information
rototor committed May 29, 2020
1 parent 0b95bef commit 55fc565
Show file tree
Hide file tree
Showing 4 changed files with 306 additions and 244 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class PrivateFieldAccessor
{
/*
* Default Implementation for Java <= 8
* Default implementation for Java <= 8
*/
private static IAccessableSetter performSetAccessible = new IAccessableSetter()
{
Expand All @@ -30,8 +30,7 @@ private interface IAccessableSetter
try
{
/*
* Dieses Gedöns braucht man nur für JDK 9+, und auch nur da funktioniert der
* Spaß...
* We need this for JDK 9+, and only their this works at all...
*/
final Method setAccessible = AccessibleObject.class
.getDeclaredMethod("setAccessible0", boolean.class);
Expand Down Expand Up @@ -63,8 +62,7 @@ public void setAccessible(AccessibleObject obj)
}
catch (Exception e)
{
throw new RuntimeException(
e); // you definitely should do this in a different way :D
throw new RuntimeException(e);
}
}
};
Expand Down
Loading

0 comments on commit 55fc565

Please sign in to comment.