Skip to content

Commit aaef056

Browse files
authored
Merge pull request #46 from BobHanson/yadav1
various fixes
2 parents 5315d4a + 4d70f77 commit aaef056

File tree

9 files changed

+10
-6
lines changed

9 files changed

+10
-6
lines changed
12 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180807091649
1+
20180807100156
12 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180807091649
1+
20180807100156
12 Bytes
Binary file not shown.

sources/net.sf.j2s.java.core/src/javax/swing/DefaultRowSorter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ public I getIdentifier() {
13901390
*/
13911391
// NOTE: this class is static so that it can be placed in an array
13921392
private static class Row implements Comparable<Row> {
1393-
private DefaultRowSorter sorter;
1393+
DefaultRowSorter sorter;
13941394
int modelIndex;
13951395

13961396
public Row(DefaultRowSorter sorter, int index) {

sources/net.sf.j2s.java.core/src/swingjs/jquery/j2sMenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Swing.showMenu = function(menu, x, y) {
228228
menu.$ulTop.unbind('clickoutjsmol mousemoveoutjsmol');
229229
if (!J2S._persistentMenu)
230230
menu.$ulTop.bind('clickoutjsmol mousemoveoutjsmol', function(evspecial, target, ev) {
231-
if (System.currentTimeMillis() - menu.timestamp > 1000)
231+
if (System.currentTimeMillis$() - menu.timestamp > 1000)
232232
Swing.hideMenu(menu);
233233
});
234234
menu.$ulTop.bind("contextmenu", function() {return false;});

sources/net.sf.j2s.java.core/srcjs/js/j2sClazz.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2939,9 +2939,11 @@ java.lang.System = System = {
29392939
v = "50";
29402940
break;
29412941
case "user.home":
2942-
v = "https:/./";
2942+
v = "https://./";
2943+
break;
29432944
case "java.vendor":
29442945
v = "SwingJS/OpenJDK";
2946+
break;
29452947
case "java.version":
29462948
v = "1.6-1.8";
29472949
break;

sources/net.sf.j2s.java.core/srcjs/swingjs2.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16376,9 +16376,11 @@ java.lang.System = System = {
1637616376
v = "50";
1637716377
break;
1637816378
case "user.home":
16379-
v = "https:/./";
16379+
v = "https://./";
16380+
break;
1638016381
case "java.vendor":
1638116382
v = "SwingJS/OpenJDK";
16383+
break;
1638216384
case "java.version":
1638316385
v = "1.6-1.8";
1638416386
break;

0 commit comments

Comments
 (0)