Skip to content

Commit

Permalink
Avoid Solarized deprecation warning
Browse files Browse the repository at this point in the history
The Solarized color scheme deprecation warning is shown by IntelliJ IDEA
if the color scheme name exactly matches one of a set of hard-coded
names.
We can work around this by simply adding a space to the end of the color
scheme names.

Fixes #180
  • Loading branch information
jkaving committed Jan 5, 2024
1 parent 57ddc2a commit bd3889e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Solarized Dark.icls
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<scheme name="Solarized Dark" version="1" parent_scheme="Default">
<scheme name="Solarized Dark " version="1" parent_scheme="Default">
<colors>
<option name="ADDED_LINES_COLOR" value="385c38" />
<option name="ANNOTATIONS_COLOR" value="586e75" />
Expand Down
2 changes: 1 addition & 1 deletion Solarized Light.icls
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<scheme name="Solarized Light" version="1" parent_scheme="Default">
<scheme name="Solarized Light " version="1" parent_scheme="Default">
<colors>
<option name="ADDED_LINES_COLOR" value="baeeba" />
<option name="ANNOTATIONS_COLOR" value="586e75" />
Expand Down

0 comments on commit bd3889e

Please sign in to comment.