-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
System.err.println("File: " + name + " not found, attempting with camel case"); #67
Comments
Meanwhile we have Juli 2017 and no feedback :((. When wanted I can do a |
Are there any updates on this issue? |
I'd be happy to just see this particular output line gone. |
@louhy We are actively maintaining a fork of afterburner.fx at https://github.com/JabRef/afterburner.fx. We also publish to maven central at https://mvnrepository.com/artifact/org.jabref/afterburner.fx. Maybe, you can give it a try. - In case you still work with JavaFX ^^ |
@koppor Of course I still work with JavaFX. But I did move away from this tool for this and a few other reasons. Thanks for the link though, maybe it'll come in useful for me or others in the future. |
I would be interested to which tool you moved to get dependency injection working. 😅 |
@koppor Oh, um, well.. I kinda switched to nothing. i.e. I do it myself. For simpler cases, I just have some singleton act as the owner and have anything that needs to "inject a thing" reference a public static getter method. For more complex situations, at first I started forking this repo, fixing this issue. But since I'm a little nuts, I ended up starting on building my own DI solution with a different approach. But I haven't had a big need for it yet, so I left it at a "mostly done" state a while ago. It was pretty cool, IIRC I used annotations, so it was a lot like how Spring works but a lot leaner of course. I suppose I should finish it. There is a project that lets you use Spring with JFX, but I've never used it: https://github.com/rgielen/javafx-weaver Spring just seems like such a heavyweight dependency to include just for DI (just look at what jfx-weaver had to do to get Spring and JFX to interface...), so I never looked into it too much. I preferred Adam Bien's "just enough to get the job done" approach. A shame he seems to have disappeared. |
Now I am curious :)
We found SupernautFX, which is coupled to Micronout -- should be more lightweight than Spring ^^ |
Oh cool, I never heard of that one before! Maybe some day I'll finish my own lightweight alternative and put it out here. But I always think it'll get comments like "Hey dummy, why did you make this when you can just use X?" ha ha |
I "always" put the "Concidered Options" in my repo as "justification": https://github.com/adr/madr/blob/develop/template/adr-template.md - and people can add options if they want. - And "fun" is also a good argument for me. My msot famous example is sjon-tree, fast JSON library :) |
Hi Adam,
it's possible to remove this output to the console? Located in FXMLView#getResourceCamelOrLowerCase(boolean mandatory, String ending): String.
In my application 'Lib-Tile-Demo' I have no '.css' file for my views in the ListView. After starting I see following output in the console (I loaded over 400 ItemCells for the ListView).
Building Lib-Tile-Demo 0.3.0-SNAPSHOT
--- exec-maven-plugin:1.2.1:exec (default-cli) @ lib-tile-demo ---
2016-09-13 19:23:24,446 DEBUG Load properties: /com/github/naoghuman/lib/tile/demo/application/application.properties [LibProperties]
2016-09-13 19:23:24,447 INFO
Start Lib-Tile-Demo v0.3.0-SNAPSHOT.
########################################################################## [LibLogger]
2016-09-13 19:23:24,449 DEBUG Init preferences file [LibPreferences]
2016-09-13 19:23:24,544 INFO Initialize ApplicationPresenter [ApplicationPresenter]
2016-09-13 19:23:24,544 INFO Initialize Background image [ApplicationPresenter]
2016-09-13 19:23:24,544 INFO Initialize menu About [ApplicationPresenter]
2016-09-13 19:23:24,572 INFO Initialize AboutPresenter [AboutPresenter]
2016-09-13 19:23:24,572 INFO Initialize label Version [AboutPresenter]
File: about.css not found, attempting with camel case
2016-09-13 19:23:24,573 INFO Initialize menu Background [ApplicationPresenter]
2016-09-13 19:23:24,610 INFO Initialize BackgroundPresenter [BackgroundPresenter]
2016-09-13 19:23:24,610 INFO Initialize Background parameters [BackgroundPresenter]
2016-09-13 19:23:24,610 INFO Initialize Color components [BackgroundPresenter]
2016-09-13 19:23:24,611 INFO Initialize ColorPicker for background color [BackgroundPresenter]
2016-09-13 19:23:24,611 INFO Initialize TextField for background image [BackgroundPresenter]
2016-09-13 19:23:24,648 DEBUG Register actions in BackgroundPresenter [BackgroundPresenter]
File: background.css not found, attempting with camel case
2016-09-13 19:23:24,648 INFO Initialize menu Tile [ApplicationPresenter]
2016-09-13 19:23:24,672 INFO Initialize TilePresenter [TilePresenter]
2016-09-13 19:23:24,673 INFO Initialize CustomizedExamples [TilePresenter]
2016-09-13 19:23:24,674 INFO Initialize TransparentTextures [TilePresenter]
2016-09-13 19:23:24,675 DEBUG Register actions in TilePresenter [TilePresenter]
2016-09-13 19:23:24,675 DEBUG Register on Action switch Selection [TilePresenter]
2016-09-13 19:23:24,676 DEBUG Register action: ON_ACTION__SWITCH_SELECTION [ILibAction]
File: tile.css not found, attempting with camel case
2016-09-13 19:23:24,677 INFO Initialize TitledPane tile [ApplicationPresenter]
2016-09-13 19:23:24,677 DEBUG Register actions in ApplicationPresenter [ApplicationPresenter]
2016-09-13 19:23:24,677 DEBUG Register on Action reset Background color [ApplicationPresenter]
2016-09-13 19:23:24,677 DEBUG Register action: ON_ACTION__RESET_BACKGROUND_COLOR [ILibAction]
2016-09-13 19:23:24,678 DEBUG Register on Action reset Background image [ApplicationPresenter]
2016-09-13 19:23:24,678 DEBUG Register action: ON_ACTION__RESET_BACKGROUND_IMAGE [ILibAction]
2016-09-13 19:23:24,678 DEBUG Register on Action reset Tile background [ApplicationPresenter]
2016-09-13 19:23:24,678 DEBUG Register action: ON_ACTION__RESET_TILE_BACKGROUND [ILibAction]
2016-09-13 19:23:24,678 DEBUG Register on Action show Background SingleColor [ApplicationPresenter]
2016-09-13 19:23:24,679 DEBUG Register action: ON_ACTION__SHOW_BACKGROUND_SINGLECOLOR [ILibAction]
2016-09-13 19:23:24,679 DEBUG Register on Action show Background XyGradient [ApplicationPresenter]
2016-09-13 19:23:24,679 DEBUG Register action: ON_ACTION__SHOW_BACKGROUND_XY_GRADIENT [ILibAction]
2016-09-13 19:23:24,679 DEBUG Register on Action show Background image [ApplicationPresenter]
2016-09-13 19:23:24,679 DEBUG Register action: ON_ACTION__SHOW_BACKGROUND_IMAGE [ILibAction]
2016-09-13 19:23:24,680 DEBUG Register on Action show Tile background [ApplicationPresenter]
2016-09-13 19:23:24,680 DEBUG Register action: ON_ACTION__SHOW_TILE_BACKGROUND [ILibAction]
File: transparenttexturesitem.css not found, attempting with camel case
File: customizedexamplesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: customizedexamplesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: customizedexamplesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
2016-09-13 19:23:25,084 INFO Initialize ApplicationPresenter after window is showing [ApplicationPresenter]
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
File: transparenttexturesitem.css not found, attempting with camel case
The text was updated successfully, but these errors were encountered: