changeset 116:3daece18b48e

java.nonstandard.locale should be java.nonstandard.Locale.
author Jacob Carlborg <doob@me.com>
date Sun, 17 Apr 2011 17:05:26 +0200
parents b31c27b8e86d
children c81e3dc6b9ad
files base/src/java/nonstandard/Locale.d base/src/java/util/ResourceBundle.d
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/base/src/java/nonstandard/Locale.d	Sun Apr 17 16:53:26 2011 +0200
+++ b/base/src/java/nonstandard/Locale.d	Sun Apr 17 17:05:26 2011 +0200
@@ -4,7 +4,7 @@
  * Author: knt.roh
  * License: Public Domain
  */
-module java.nonstandard.locale;
+module java.nonstandard.Locale;
 
 import java.lang.String;
 import java.lang.util : implMissing;
@@ -18,9 +18,9 @@
 version (Windows) {
     private import std.c.string;
     private import std.c.windows.windows;
-    private bool W_VERSION;
-    static this() {
-        W_VERSION = GetVersion < 0x80000000;
+    private bool W_VERSION;
+    static this() {
+        W_VERSION = GetVersion < 0x80000000;
     }
     private extern (Windows) {
         enum LCID : DWORD {
--- a/base/src/java/util/ResourceBundle.d	Sun Apr 17 16:53:26 2011 +0200
+++ b/base/src/java/util/ResourceBundle.d	Sun Apr 17 17:05:26 2011 +0200
@@ -8,7 +8,7 @@
 import java.lang.exceptions;
 import java.util.MissingResourceException;
 import java.util.Enumeration;
-import java.nonstandard.locale;
+import java.nonstandard.Locale;
 version(Tango){
     //import tango.text.Util;
     import tango.io.device.File;