-
-
Notifications
You must be signed in to change notification settings - Fork 52
Update jsps for 15.1 beta #491
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
Conversation
programmatically determine jspVersion instead of hard-code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code changes look reasonable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RSLGTM on the data, seems reasonable
@markusicu did you want to have a look at this before I merge and hand off the deployment to you (or @srl295 or whoever wants to do it)? |
@@ -43,7 +44,9 @@ public class CachedProps { | |||
final BiMultimap<String, String> nameToAliases = new BiMultimap<String, String>(null, null); | |||
final Map<String, BiMultimap<String, String>> nameToValueToAliases = new LinkedHashMap(); | |||
|
|||
static CachedProps CACHED_PROPS = getInstance(VersionInfo.getInstance(14)); | |||
static String jspVersion = IS_BETA ? Settings.lastVersion : Settings.latestVersion; | |||
static VersionInfo jspVersionInfo = VersionInfo.getInstance(jspVersion); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussion: As long as we are serving ICU data, we should use jspVersionInfo = UCharacter.getUnicodeVersion();
Updated jsps for 15.1 beta.
Reviewers please note some related updates to CachedProps.java (set
IS_BETA = true
and also added some code to get the version without hard-coding).