Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #191 from SpigotMC/master
Browse files Browse the repository at this point in the history
Make bungeecord-chat API classes final - the API does not (nor should…
  • Loading branch information
sleiss authored Jan 6, 2018
2 parents d95a8cf + dda0638 commit 5e67309
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* part's formatting
* </p>
*/
public class ComponentBuilder
public final class ComponentBuilder
{

private BaseComponent current;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@Getter
@ToString
@RequiredArgsConstructor
final public class HoverEvent
public final class HoverEvent
{

private final Action action;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Setter
@ToString
@NoArgsConstructor
public class KeybindComponent extends BaseComponent
public final class KeybindComponent extends BaseComponent
{

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@Getter
@Setter
@AllArgsConstructor
public class TextComponent extends BaseComponent
public final class TextComponent extends BaseComponent
{

private static final Pattern url = Pattern.compile( "^(?:(https?)://)?([-\\w_\\.]{2,}\\.[a-z]{2,4})(/\\S*)?$" );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@Setter
@ToString
@NoArgsConstructor
public class TranslatableComponent extends BaseComponent
public final class TranslatableComponent extends BaseComponent
{

private final ResourceBundle locales = ResourceBundle.getBundle( "mojang-translations/en_US" );
Expand Down

0 comments on commit 5e67309

Please sign in to comment.