Jens Fischer

Results 175 issues of Jens Fischer

Constructor params are discouraged, there's no real reason to let the user create an instance of the state himself. switchState() would take a Class. ##

The following snippet triggers the `UnnecessaryParentheses` rule: ```kt try { } catch (e: Exception) { if ("foo" in (e.message ?: "")) {} } ``` However, they're not in fact unnecessary:...

bug
false-positive

see https://github.com/HaxeFlixel/flixel-addons/pull/243

`initPixels()` is private (and can create memleaks actually, but that's another issue). If the size of the target bitmap changes, like it is the case with multiline texts, only the...

https://github.com/HaxeFlixel/flixel/issues/79

``` haxe class Test { // ° var test:Int = 0; } ``` ``` haxe ./source/Test.hx:4: characters 16-17 : Error: No whitespace around "=" ``` Same result with `ä` or...

bug

Checkstyle dies on this line: https://github.com/HaxeFlixel/flixel/blob/4.2.0/flixel/graphics/frames/FlxBitmapFont.hx#L31 And apparently only on Windows. Easiest way to reproduce is to clone the flixel repo and run `haxelib run checkstyle -s . -progress` -...

bug