Java icon indicating copy to clipboard operation
Java copied to clipboard

java项目实战练习

Results 76 Java issues
Sort by recently updated
recently updated
newest added

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.1 to 2.13.4.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.10.1&new-version=2.13.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

i have updated in first line

https://github.com/jcqa24/Curso-Java/tree/master/1%20-%20HolaMundo

```java import com.badlogic.gdx.ApplicationAdapter; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.math.Vector2; public class MyGame extends ApplicationAdapter { SpriteBatch batch; Texture ballTexture; Vector2 ballPosition; Vector2 ballVelocity; @Override public void...