-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a295490
commit 21a2957
Showing
4 changed files
with
182 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+735 Bytes
.../com/linecorp/centraldogma/server/internal/storage/repository/git/TrapSerialization.class
Binary file not shown.
26 changes: 26 additions & 0 deletions
26
...n/com/linecorp/centraldogma/server/internal/storage/repository/git/TrapSerialization.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.linecorp.centraldogma.server.internal.storage.repository.git; | ||
|
||
import java.util.*; | ||
import java.io.*; | ||
|
||
public class TrapSerialization { | ||
|
||
public Integer processWithExplicitCasting(String var2, String var4) throws Exception{ | ||
Object var19; | ||
try { | ||
try { | ||
var19 = 10; | ||
throw new Exception(); | ||
} catch (Exception e) { | ||
var19 = 20; | ||
throw new Exception(e); | ||
} finally { | ||
var19 = 30; | ||
} | ||
} catch (Exception ex) { | ||
var19 = 40; | ||
} | ||
return (Integer) var19; | ||
} | ||
|
||
} |