Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Cedar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Private MC Server
previous-src
Cedar
Commits
ee3ada84
Commit
ee3ada84
authored
7 years ago
by
Spotlight Deveaux
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused package
parent
31ecf1b6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build.gradle
+0
-2
0 additions, 2 deletions
build.gradle
src/io/github/packserver/Cedar/JSONResponse.java
+0
-22
0 additions, 22 deletions
src/io/github/packserver/Cedar/JSONResponse.java
src/io/github/packserver/Cedar/Main.java
+0
-17
0 additions, 17 deletions
src/io/github/packserver/Cedar/Main.java
with
0 additions
and
41 deletions
build.gradle
+
0
−
2
View file @
ee3ada84
...
...
@@ -50,8 +50,6 @@ dependencies {
provided
group:
'org.spigotmc'
,
name:
'spigot-api'
,
version:
'1.12.1-R0.1-SNAPSHOT'
provided
group:
'org.bukkit'
,
name:
'bukkit'
,
version:
'1.12.1-R0.1-SNAPSHOT'
compile
group:
'commons-io'
,
name:
'commons-io'
,
version:
'2.5'
// Colors
compile
'org.fusesource.jansi:jansi:1.13'
// Redis
compile
group:
"redis.clients"
,
name:
"jedis"
,
version:
"2.9.0"
}
...
...
This diff is collapsed.
Click to expand it.
src/io/github/packserver/Cedar/JSONResponse.java
deleted
100644 → 0
+
0
−
22
View file @
31ecf1b6
package
io.github.packserver.Cedar
;
import
com.google.gson.annotations.SerializedName
;
/**
* Created by spotlight on 6/20/17.
*/
public
class
JSONResponse
{
class
ResponseFormat
{
@SerializedName
(
"data"
)
Integer
action
;
@SerializedName
(
"errors"
)
String
uuid
;
@SerializedName
(
"meta"
)
Integer
code
;
}
private
ResponseFormat
response
;
public
JSONResponse
()
{
}
}
This diff is collapsed.
Click to expand it.
src/io/github/packserver/Cedar/Main.java
+
0
−
17
View file @
ee3ada84
package
io.github.packserver.Cedar
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.io.InputStreamReader
;
import
java.io.Reader
;
import
java.util.Properties
;
import
org.bukkit.configuration.file.FileConfiguration
;
import
org.bukkit.configuration.file.YamlConfiguration
;
import
org.bukkit.event.Listener
;
import
org.bukkit.plugin.java.JavaPlugin
;
import
org.eclipse.jetty.server.Server
;
import
org.eclipse.jetty.servlet.ServletContextHandler
;
import
org.fusesource.jansi.Ansi
;
/**
* A registration plugin, server side.
...
...
@@ -31,12 +20,6 @@ public class Main extends JavaPlugin implements Listener {
*/
static
Main
plugin
;
/**
* ANSI colors
*/
final
static
String
RESET
=
Ansi
.
ansi
().
reset
().
toString
();
final
static
String
BLUE
=
Ansi
.
ansi
().
fg
(
Ansi
.
Color
.
BLUE
).
boldOff
().
toString
();
/**
* Fired when plugin is first enabled
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment