Skip to content

Commit

Permalink
Fix compilation error for Windows environment. #1342
Browse files Browse the repository at this point in the history
  • Loading branch information
mkordas authored and romani committed Jul 10, 2015
1 parent 9470bb3 commit 12fc9a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -461,7 +461,7 @@ public void testIssue32_6() {

public void testIssue32_7() {
String line = "abc";
writer.write(line);
otherWriter.write(line);
line.charAt(1);
builder.append(line);
test(line, line, line);
Expand Down Expand Up @@ -814,7 +814,7 @@ public void setColor(int i)

}

static class writer {
static class otherWriter {

public static void write(String line)
{
Expand All @@ -836,4 +836,4 @@ public static void append(String line)

}

}
}
Expand Up @@ -73,7 +73,7 @@ final class InputValidClassDefIndent5b extends java.awt.event.MouseAdapter imple
} //indent:2 exp:0 warn


class InputInvalidClassDefIndentc //indent:0 exp:0
class InputInvalidClassDefIndentc2 //indent:0 exp:0
extends java.awt.event.MouseAdapter implements java.awt.event.MouseListener { //indent:2 exp:4 warn


Expand Down
Expand Up @@ -6,7 +6,7 @@ abstract public class InputAbstractClassName {
abstract class NonAbstractClassName {
}

abstract class AbstractClassName {
abstract class AbstractClassOther {
abstract class NonAbstractInnerClass {
}
}
Expand Down

0 comments on commit 12fc9a2

Please sign in to comment.