| Summary: | Blank error. | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Paweł Szewczuk <Szewczukpawel.sp> | ||||
| Component: | APT | Assignee: | Generic inbox for the JDT-APT component <jdt-apt-inbox> | ||||
| Status: | CLOSED WONTFIX | QA Contact: | |||||
| Severity: | critical | ||||||
| Priority: | P3 | CC: | register.eclipse | ||||
| Version: | 4.8 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows 10 | ||||||
| Whiteboard: | stalebug | ||||||
| Attachments: |
|
||||||
I cannot reproduce the problem on the mac with 4.7.2 or the the master. Maybe it is an encoding problem because of the non-ascii characters in "Potwór " that only appears on Windows? Please check the "Console" and "Error Log"-Views (Window>Show View>...), maybe there is more information. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
Created attachment 272409 [details] Screenshot from logs. Steps to reproduce: 1. Enter Eclipse. 2. Create new package - name: dziedziczenie.potwory 3. Create new package - name: dziedziczenie2 4. In package create three new classes: Potwór, Zombie, Szkielet. 5. In packagre create new class: Dziedziczenie. 6. Open class Potwór.java and paste this: package dziedziczenie.potwory; public class Potwór { public double predkoscChodzenia = 10; public double żywotnosc; public void atakuj() { // System.out.println("To jest motoda ataku z klasy potwor"); } public Potwór() { } public Potwór(double predkoscChodzenia, double żywotnosc) { this.predkoscChodzenia = predkoscChodzenia; this.żywotnosc = żywotnosc; } } 7. Open class Zombie and paste this: package dziedziczenie.potwory; public class Szkielet extends Potwór{ } 8. Open class Zombie and paste this: package dziedziczenie.potwory; public class Zombie extends Potwór { } 9. Open class Dziedziczenie and paste this: package dziedziczenie2; import dziedziczenie.potwory.*; public class Dziedziczenie { public static void main(String[] args) { Potwór p = new Potwór(10, 100); System.out.println(p.predkoscChodzenia); Szkielet s = new Szkielet(); Zombie z = new Zombie(); } } 10. Run Dziedziczenie.java Expected output: Eclipse run program. Actual output: Blank error message.