Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't always break at method calls with prefix #94

Merged
merged 18 commits into from
Dec 4, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add test for long SafeArg
dansanduleac committed Dec 4, 2019
commit 9ce2e88d49507d14994bf60a0363452a99717b98
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class PalantirLongSafeArg {
public static void foo() {
Preconditions.checkArgument(
hostPortString.charAt(0) == '[', "Bracketed host-port string must start with a bracket", SafeArg.of(
"port", hostPortString));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class PalantirLongSafeArg {
public static void foo() {
Preconditions.checkArgument(
hostPortString.charAt(0) == '[', "Bracketed host-port string must start with a bracket", SafeArg.of(
"port", hostPortString));
}
}