Skip to content

Commit

Permalink
Fix errors due to wrong package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyknic committed Nov 22, 2016
1 parent e5f2d6e commit cbc3609
Show file tree
Hide file tree
Showing 19 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -161,7 +161,7 @@
</executions>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
<excludePackageNames>com.github.pyknic.vector.internal.*</excludePackageNames>
<excludePackageNames>com.github.pyknic.vector.internal</excludePackageNames>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/pyknic/vector/Vec.java
Expand Up @@ -14,7 +14,7 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

/**
* The common interface for all vectors with a specified length.
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/github/pyknic/vector/Vec1f.java
Expand Up @@ -14,10 +14,10 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

import com.github.pyknic.game.core.internal.Vec1fConst;
import com.github.pyknic.game.core.internal.Vec1fImpl;
import com.github.pyknic.vector.internal.Vec1fConst;
import com.github.pyknic.vector.internal.Vec1fImpl;

/**
* A one-dimensional {@code float}-based vector.
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/github/pyknic/vector/Vec2f.java
Expand Up @@ -14,10 +14,10 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

import com.github.pyknic.game.core.internal.Vec2fConst;
import com.github.pyknic.game.core.internal.Vec2fImpl;
import com.github.pyknic.vector.internal.Vec2fConst;
import com.github.pyknic.vector.internal.Vec2fImpl;

/**
* A two-dimensional {@code float}-based vector.
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/github/pyknic/vector/Vec3f.java
Expand Up @@ -14,10 +14,10 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

import com.github.pyknic.game.core.internal.Vec3fConst;
import com.github.pyknic.game.core.internal.Vec3fImpl;
import com.github.pyknic.vector.internal.Vec3fConst;
import com.github.pyknic.vector.internal.Vec3fImpl;

/**
* A three-dimensional {@code float}-based vector.
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/github/pyknic/vector/Vec4f.java
Expand Up @@ -14,10 +14,10 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

import com.github.pyknic.game.core.internal.Vec4fConst;
import com.github.pyknic.game.core.internal.Vec4fImpl;
import com.github.pyknic.vector.internal.Vec4fConst;
import com.github.pyknic.vector.internal.Vec4fImpl;

/**
* A four-dimensional {@code float}-based vector.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/pyknic/vector/Vecf.java
Expand Up @@ -14,7 +14,7 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core;
package com.github.pyknic.vector;

/**
* Common interface for all vectors of {@code float} type.
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec1f;
import com.github.pyknic.vector.Vec1f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec2f;
import com.github.pyknic.vector.Vec2f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec3f;
import com.github.pyknic.vector.Vec3f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec4f;
import com.github.pyknic.vector.Vec4f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec1f;
import com.github.pyknic.vector.Vec1f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec1f;
import com.github.pyknic.vector.Vec1f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec2f;
import com.github.pyknic.vector.Vec2f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec2f;
import com.github.pyknic.vector.Vec2f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec3f;
import com.github.pyknic.vector.Vec3f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec3f;
import com.github.pyknic.vector.Vec3f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec4f;
import com.github.pyknic.vector.Vec4f;

/**
*
Expand Down
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.pyknic.game.core.internal;
package com.github.pyknic.vector.internal;

import com.github.pyknic.game.core.Vec4f;
import com.github.pyknic.vector.Vec4f;

/**
*
Expand Down

0 comments on commit cbc3609

Please sign in to comment.