Skip to content

Commit

Permalink
javadoc, comments, and whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 27, 2024
1 parent f9e0135 commit c83d7c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
plugins {
id 'application' // to build JVM applications
id 'checkstyle' // to analyze Java sourcecode for style violations
id 'cpp' // to compile C/C++ sourcecode and link native libraries
id 'cpp' // to compile C/C++ code and link native libraries
id 'java-library' // to build JVM libraries
id 'maven-publish' // to publish artifacts to Maven repositories
id 'signing' // to sign artifacts for publication
Expand All @@ -21,12 +21,11 @@ sourceSets.main.java {
srcDir 'src/main/java'
srcDir 'src/main/native' // for IDE access (no Java there)
}

sourceSets.test.java {
srcDir 'src/test/java'
}

// Regenerate all JNI header files before compiling any C++ source code.
// Regenerate all JNI header files before compiling any C++ code.
tasks.withType(CppCompile) {
dependsOn('classes', 'compileTestJava')
}
Expand Down Expand Up @@ -415,6 +414,7 @@ jar {

java.withJavadocJar()
javadocJar { archiveBaseName = project.ext.baseName }

tasks.register('sourcesJar', Jar) {
archiveBaseName = project.ext.baseName
archiveClassifier = 'sources'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jme3/bullet/CollisionSpace.java
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public PhysicsSpace.BroadphaseType getBroadphaseType() {
}

/**
* Access the CollisionSpace associated with this thread.
* Access the CollisionSpace associated with the current thread.
*
* @return the pre-existing CollisionSpace, or {@code null} if none
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jme3/system/JmeSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
package com.jme3.system;

/**
* Utility class to access platform-dependant features.
* Utility class to access platform-dependent features.
*/
public class JmeSystem {
// *************************************************************************
Expand Down

0 comments on commit c83d7c6

Please sign in to comment.