Skip to content

Commit 8120c78

Browse files
committed
renamed and some fixes.
1 parent 5a82acb commit 8120c78

9 files changed

Lines changed: 15 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
[![Join the chat at https://gitter.im/jME3-SpaceShift-Editor/Lobby](https://badges.gitter.im/jME3-SpaceShift-Editor/Lobby.svg)](https://gitter.im/jME3-SpaceShift-Editor/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
55

6-
* [Wiki](https://bitbucket.org/JavaSabr/jme3-spaceshift-editor/wiki/Home)
6+
* [Wiki](https://bitbucket.org/JavaSabr/jmonkey-builder/wiki/Home)
77
* [Download](https://yadi.sk/d/UuKcJBNgqbV3a)
88
* [Gitter](https://gitter.im/jME3-SpaceShift-Editor/Lobby?source=orgpage)
9-
* [Official jMonkey thread](https://hub.jmonkeyengine.org/t/jme3-spaceshift-editor/35179)
9+
* [Official jMonkey thread](https://hub.jmonkeyengine.org/t/jmonkey-builder/35179)
1010
* [Youtube channel](https://www.youtube.com/playlist?list=PLNdOH0eRoQMBkLPBvTIDn02UFhcTJWsh7)
1111

1212
## [Video about this editor](https://youtu.be/5nX8HXYdENU) ##

src/main/java/com/ss/editor/JFXApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ private static void printError(@NotNull final Throwable throwable) {
192192
throwable.printStackTrace();
193193

194194
final String userHome = System.getProperty("user.home");
195-
final String fileName = "jme3-spaceshift-editor-error.log";
195+
final String fileName = "jmonkey-builder-error.log";
196196

197197
try (final PrintStream out = new PrintStream(newOutputStream(Paths.get(userHome, fileName)))) {
198198
throwable.printStackTrace(out);

src/main/java/com/ss/editor/task/CheckNewVersionTask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ public class CheckNewVersionTask implements Runnable {
3737

3838
@NotNull
3939
private static final String APP_VERSION_URL = "https://api.bitbucket.org/1.0/repositories/javasabr/" +
40-
"jme3-spaceshift-editor/raw/master/app.version";
40+
"jmonkey-builder/raw/master/app.version";
4141

4242
@NotNull
4343
private static final String DOWNLOAD_APP_PATH_URL = "https://api.bitbucket.org/1.0/repositories/javasabr/" +
44-
"jme3-spaceshift-editor/raw/master/download.app.path";
44+
"jmonkey-builder/raw/master/download.app.path";
4545

4646
@Override
4747
public void run() {

src/main/java/com/ss/editor/ui/component/virtual/tree/resource/VirtualResourceElementFactory.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ public class VirtualResourceElementFactory {
2020
/**
2121
* Build the root virtual resource elements for the resources.
2222
*
23-
* @param resources the resources.
23+
* @param resources the resources.
24+
* @param resourceTree the resources tree.
25+
* @param <T> the type of resources.
2426
* @return the root element.
2527
*/
2628
@FromAnyThread

src/main/java/com/ss/editor/ui/dialog/about/AboutDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
public class AboutDialog extends AbstractSimpleEditorDialog {
3232

3333
@NotNull
34-
private static final String PROJECT_HOME = "https://bitbucket.org/JavaSabr/jme3-spaceshift-editor";
34+
private static final String PROJECT_HOME = "https://bitbucket.org/JavaSabr/jmonkey-builder";
3535

3636
@NotNull
37-
private static final String FORUM_THREAD = "https://hub.jmonkeyengine.org/t/jme3-spaceshift-editor/35179/";
37+
private static final String FORUM_THREAD = "https://hub.jmonkeyengine.org/t/jmonkey-builder/35179";
3838

3939
@NotNull
4040
private static final Point DIALOG_SIZE = new Point(600, -1);

src/main/java/com/ss/editor/ui/dialog/asset/BaseAssetEditorDialog.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ protected void createContent(@NotNull final VBox root) {
159159

160160
/**
161161
* Handle selected element in the tree.
162+
*
163+
* @param newValue the new selected item.
162164
*/
163165
@FXThread
164166
protected void processSelected(@Nullable final TreeItem<T> newValue) {

src/main/java/com/ss/editor/ui/dialog/asset/virtual/VirtualAssetEditorDialog.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public VirtualAssetEditorDialog(@NotNull final Consumer<C> consumer,
5656
}
5757

5858
/**
59+
* @param pathFunction the path function.
5960
* @see VirtualResourceTree#setPathFunction(Function)
6061
*/
6162
@FromAnyThread

src/main/java/com/ss/editor/ui/util/UIUtils.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ public static <T> void visit(@NotNull final TreeItem<T> item, @NotNull final Con
435435
* @param <T> the type parameter.
436436
* @param item the tree item.
437437
* @param visitor the visitor.
438+
* @return true of we can visit child elements.
438439
*/
439440
@FXThread
440441
public static <T> boolean visitUntil(@NotNull final TreeItem<T> item,

src/main/java/com/ss/editor/util/GeomUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public static Geometry getGeometryFromCursor(@NotNull final Spatial spatial, @No
262262
* Get a geometry on spatial from screen position.
263263
*
264264
* @param spatial the spatial.
265-
* @param spatial the camera.
265+
* @param camera the camera.
266266
* @param screenX the screen X coord.
267267
* @param screenY the screen Y coord.
268268
* @return the geometry or null.

0 commit comments

Comments
 (0)