Update java debugger plugin
This commit is contained in:
parent
4c96655526
commit
0452329203
2 changed files with 21 additions and 3 deletions
|
|
@ -132,10 +132,10 @@ GADGETS = {
|
|||
'${version}/${file_name}',
|
||||
},
|
||||
'all': {
|
||||
'version': '0.23.0',
|
||||
'file_name': 'vscode-java-debug-0.23.0.vsix',
|
||||
'version': '0.26.0',
|
||||
'file_name': 'vscjava.vscode-java-debug-0.26.0.vsix',
|
||||
'checksum':
|
||||
'f98a35c8dd4f3079ecd9657b04f1edbfea04c364c0fbf7eee1285f942782710b',
|
||||
'de49116ff3a3c941dad0c36d9af59baa62cd931e808a2ab392056cbb235ad5ef',
|
||||
},
|
||||
'adapters': {
|
||||
"vscode-java": {
|
||||
|
|
|
|||
|
|
@ -13,6 +13,22 @@ public class TestApplication {
|
|||
return list;
|
||||
}
|
||||
|
||||
private static class Bass extends Base {
|
||||
String bass = "Pump";
|
||||
@Override
|
||||
public String DoSomething() {
|
||||
if ( Math.random() % 3 == 0 ) {
|
||||
return bass;
|
||||
}
|
||||
return super.DoSomething();
|
||||
}
|
||||
}
|
||||
|
||||
private static <T extends Base> void DoGeneric( T b ) {
|
||||
TestGeneric<T> foo = new TestGeneric<>( b );
|
||||
foo.DoSomethingUseful();
|
||||
}
|
||||
|
||||
public static void main( String[] args ) {
|
||||
int numEntries = 0;
|
||||
for ( String s : args ) {
|
||||
|
|
@ -24,6 +40,8 @@ public class TestApplication {
|
|||
++numEntries;
|
||||
}
|
||||
System.out.println( "Number of entries: " + numEntries );
|
||||
|
||||
DoGeneric( new Bass() );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue