MoonFruit

Results 18 issues of MoonFruit

**Important:** *Do not tick a checkbox if you haven’t performed its action.* Honesty is indispensable for a smooth review process. _In the following questions `` is the token of the...

new cask

I use GMavenPlus for my project for joint compilation. In the pure java module, when I run `mvn package`, if there is nothing changed in the module, the artifact is...

Enhancement

Code like this should be allowed for `DirectInvocationOnMock`: ```java import static org.mockito.Mockito.mock; import static org.mockito.BDDMockito.given; @Test void test() { Caller caller = mock(Caller.class); given(caller.call()).willReturn(1); } ```

Previous `LocalUtil.java` makes below useless: `clazz = Thread.currentThread().getContextClassLoader().loadClass(remappedClassName);` Because of the next: `clazz = LocalUtil.class.getClassLoader().loadClass(remappedClassName);`

Created with `brew bump-formula-pr`.

bump-formula-pr

I use macOS 11.1 and QLColorCode. I found a strange problem that `public.xml` is handled by `/System/Library/QuickLook/Text.qlgenerator`, and not handled by `QLColorCode`. In `/System/Library/QuickLook/Text.qlgenerator/Contents/Info.plist` I found this: ```xml LSItemContentTypes public.plain-text...

question

### Verify steps - [X] 我已经在 [Issue Tracker](……/) 中找过我要提出的问题 I have searched on the [issue tracker](……/) for a related issue. - [X] 我已经使用公测版本测试过,问题依旧存在 I have tested using the test mod,...

Codes below should not call `t.printStackTrace()` to print stack to stderr, it should rely on `log.logError()` do the work. https://github.com/pentaho/pentaho-kettle/blob/5bbca055f14dd7358619e27674256f7572e8338b/engine/src/main/java/org/pentaho/di/trans/step/RunThread.java#L75-L78

In most of the scenarios I work on, the file to be detected is usually only likely to be one of several identified encodings. So I would like to have...

enhancement