Fixes to windows build

This commit is contained in:
Joakim Erdfelt 2017-03-08 10:38:00 -07:00
parent 43d0488269
commit 0963a1c287
2 changed files with 5 additions and 2 deletions

View File

@ -359,7 +359,7 @@ public class AsyncRequestReadTest
break;
out.write(c);
}
out.println();
out.write('\n');
}
}
}

View File

@ -82,7 +82,10 @@ public class AllowSymLinkAliasCheckerTest
@After
public void teardown() throws Exception
{
server.stop();
if( server != null )
{
server.stop();
}
}
private void setupRoot() throws IOException