Skip to content
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

Rename Tile into TileCoord #645

Merged
merged 1 commit into from
May 7, 2023
Merged

Rename Tile into TileCoord #645

merged 1 commit into from
May 7, 2023

Conversation

bchapuis
Copy link
Member

@bchapuis bchapuis commented May 7, 2023

No description provided.

throw new UnsupportedOperationException("The postgis tile store is read only");
}

/** This operation is not supported. */
public void delete(Tile tile) {
public void delete(TileCoord tileCoord) {

Check notice

Code scanning / CodeQL

Missing Override annotation

This method overrides [TileStore.delete](1); it is advisable to add an Override annotation.
}

/** This operation is not supported. */
public void write(Tile tile, ByteBuffer blob) {
public void write(TileCoord tileCoord, ByteBuffer blob) {

Check notice

Code scanning / CodeQL

Missing Override annotation

This method overrides [TileStore.write](1); it is advisable to add an Override annotation.
@@ -17,23 +17,23 @@
import org.junit.jupiter.api.Test;
import org.locationtech.jts.geom.Envelope;

class TileTest {
class TileCoordTest {

Check notice

Code scanning / CodeQL

Unused classes and interfaces

Unused class: TileCoordTest is not referenced within this codebase. If not used as an external API it should be removed.
@@ -19,35 +19,35 @@
import org.junit.jupiter.api.Test;
import org.locationtech.jts.geom.Envelope;

class TileIteratorTest {
class TileCoordIteratorTest {

Check notice

Code scanning / CodeQL

Unused classes and interfaces

Unused class: TileCoordIteratorTest is not referenced within this codebase. If not used as an external API it should be removed.
@sonarcloud
Copy link

sonarcloud bot commented May 7, 2023

SonarCloud Quality Gate failed.    Quality Gate failed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 7 Code Smells

67.9% 67.9% Coverage
0.0% 0.0% Duplication

@bchapuis bchapuis merged commit 533480f into main May 7, 2023
@bchapuis bchapuis deleted the tile-coord-refactoring branch May 7, 2023 12:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant